Packages

4946 results

AWS SDK for Python (Boto3)

Cloud Infrastructure

The primary Python SDK for Amazon Web Services, providing a unified interface to 200+ AWS services including S3, EC2, Lambda, DynamoDB, SQS, and more. Agents use it to orchestrate cloud resources, read/write data, trigger serverless functions, and automate infrastructure.

Free tier aws boto3 python
70

BoardGameGeek MCP Server

Search

Community MCP server providing access to the BoardGameGeek (BGG) API through MCP. Enables AI agents to retrieve board game information — game ratings, reviews, player counts, mechanics, categories, and community data from BGG's comprehensive board game database. Useful for game recommendation, collection management, and board game research agents.

MCP Free tier boardgamegeek bgg board-games
70

Cheat Engine MCP Bridge

Developer Tools

MCP server that bridges AI assistants to Cheat Engine, enabling natural language interaction with program memory for reverse engineering, debugging, and analysis. Supports reading memory, following pointer chains, scanning for patterns, analyzing structures, identifying C++ object types via RTTI, and setting hardware breakpoints including Ring -1 DBVM tracing.

MCP Free tier cheat-engine mcp reverse-engineering
70

OneSignal API

Other

Multi-channel customer engagement platform enabling push notifications, email, SMS, and in-app messages via a unified API with advanced segmentation and A/B testing.

Free tier onesignal push-notifications email
70

Ops MCP Server

Cloud Infrastructure

Operations MCP server providing system administration and DevOps capabilities to AI agents — executing shell commands, managing system processes, monitoring server resources, handling file operations, and integrating operational tasks into agent-driven infrastructure management workflows. Designed for system operators and DevOps engineers.

MCP Free tier operations devops mcp-server
70

ROS2 Nav2 MCP Server

Developer Tools

ROS2 Nav2 MCP server enabling AI agents to control ROS2 Navigation2 (Nav2) — the standard ROS2 navigation stack for mobile robots — sending navigation goals, monitoring navigation progress, managing costmaps and path planners, controlling recovery behaviors, and integrating AI-driven navigation planning into autonomous mobile robot workflows.

MCP Free tier ros2 nav2 navigation
70

Room (Android Jetpack)

Developer Tools

Android Jetpack's SQLite abstraction library — the standard local database solution for Android apps. Room provides an annotation-based ORM: @Entity (table), @Dao (query interface with @Query/@Insert/@Update/@Delete), @Database (database definition). Compile-time query verification catches SQL errors before runtime. Native Kotlin coroutines and Flow support for async queries and reactive data streams. Integrates with LiveData and Paging 3. Used by virtually every Android app requiring local data persistence.

Free tier android kotlin java
70

RuboCop

Developer Tools

Ruby static analysis and linting tool — enforces Ruby community style guide via configurable 'cops' that check style, layout, lint, metrics, naming, performance, and security. RuboCop features: rubocop CLI with auto-fix (--autocorrect), .rubocop.yml configuration, department-based cop organization (Style, Layout, Lint, Metrics, Naming, Security), extension gems (rubocop-rails, rubocop-rspec, rubocop-performance), AllCops settings for include/exclude, inheritance from shared config (rubocop-rails, rubocop-ast), and integration with editors and CI. Example cops: Style/StringLiterals (single vs double quotes), Metrics/MethodLength (max 10 lines), Lint/UnusedVariable, Security/Eval. The de facto Ruby style enforcer used by Rails, Homebrew, and most major Ruby projects.

Free tier ruby rubocop linting
70

Scraps — Web Content Scraping MCP

Search

Scraps MCP server enabling AI agents to scrape and extract structured content from web pages — fetching page HTML, parsing content, extracting text and links, and transforming web content into clean structured data for agent-driven research and content analysis workflows.

MCP Free tier web-scraping content-extraction mcp-server
70

WeCom Bot MCP Server

Communication

MCP server for WeCom (WeChat Work / Weixin Enterprise) bot messaging. Enables AI agents to send messages, notifications, and alerts to WeCom group chats via WeCom's Bot Webhook API. Primarily used for automated notifications in Chinese enterprise environments using WeCom as their internal messaging platform.

MCP Free tier wecom wechat-work enterprise-messaging
70

Web Browser MCP Server

Search

Web Browser MCP server enabling AI agents to control a headless web browser — navigating to URLs, clicking elements, filling forms, taking screenshots, and extracting page content, bringing full browser automation into agent-driven web research and data extraction workflows using Playwright or similar.

MCP Free tier web-browser playwright mcp-server
70

httpx

Developer Tools

Full-featured HTTP client for Python — supports both sync and async APIs, HTTP/1.1 and HTTP/2, connection pooling, timeouts, redirects, authentication, and streaming. httpx features: httpx.Client() for sync, httpx.AsyncClient() for async, identical API for both, HTTP/2 support (http2=True), connection limits, timeout control (connect/read/write/pool), cookie jars, proxy support, SSL verification, streaming responses, multipart upload, custom transports, event hooks, and drop-in requests compatibility for sync usage. Designed for modern async Python including FastAPI test clients.

Free tier python httpx http
70

Delphi MCP Server

AI & Machine Learning

Official Delphi MCP server enabling AI agents to interact with Delphi — a platform for creating AI-powered digital twins and expert knowledge clones — querying personalized AI personas trained on expert knowledge, accessing domain-specific answers from Delphi-trained experts, and integrating expert knowledge systems into agent-driven research and consultation workflows.

MCP Free tier delphi digital-twin mcp-server
70

GitHub Projects API (GraphQL)

Productivity

GitHub Projects v2 is a flexible project management tool built on top of GitHub issues and pull requests. The GraphQL API enables agents to create and manage project boards, add items (issues/PRs/draft items), update custom fields, set status, and automate project workflows.

Free tier github projects graphql
70

Hypothesis

Developer Tools

Property-based testing library for Python — generates test inputs automatically based on strategies to find edge cases that example-based tests miss. Hypothesis features: @given() decorator with strategies (st.text(), st.integers(), st.lists(), st.from_type()), automatic shrinking to minimal failing example, database of failure cases between runs, Hypothesis profiles (CI vs local), assume() for preconditions, st.composite() for custom strategies, deadline control, and pytest integration. @given(st.text()) def test_agent_name_validation(name): passes thousands of generated strings to find agent validation edge cases. Finds: empty strings, Unicode, huge inputs, boundary values automatically.

Free tier python testing hypothesis
70

Just (Task Runner)

Developer Tools

Command runner for project-specific tasks. Just stores project commands in a Justfile — similar to Makefile but without the build artifact focus — and provides tab completion, documentation via comments, cross-platform compatibility, and variable support. The modern Make replacement for running common development commands: just test, just build, just deploy. Works for any language — Rust, Python, Go, JavaScript.

Free tier rust task-runner make-alternative
70

MCPSharp

Other

MCPSharp is a .NET library that lets developers build MCP servers and clients using attribute-based annotations, automatically handling JSON-RPC protocol details so .NET methods can be exposed as MCP tools with minimal boilerplate.

MCP Free tier dotnet csharp sdk
70

Microsoft Outlook MCP Server

Other

Microsoft Outlook MCP server enabling AI agents to interact with Outlook email and calendar — reading and sending emails, managing calendar events, accessing contacts, searching inbox, and integrating Microsoft 365 communication and scheduling into agent workflows for personal assistant and workplace automation use cases.

MCP Free tier outlook microsoft email
70

MongoDB Atlas MCP Server

Developer Tools

MongoDB Atlas MCP server enabling AI agents to interact with MongoDB Atlas cloud database — querying collections with MongoDB query language, running aggregation pipelines, managing documents, exploring database and collection structure, and integrating MongoDB's document database capabilities into agent-driven data workflows.

MCP Free tier mongodb atlas nosql
70

attrs

Developer Tools

Python classes without boilerplate — generates __init__, __repr__, __eq__, __hash__ and more from class definitions with validators and converters. attrs features: @define (modern API), @attrs.define for dataclass-like syntax, attr.ib() / attrs.field() for field definition, validators (instance_of, in_, optional, and_, or_, deep_iterable), converters (str, int, custom), Factory for default factories, frozen=True for immutable instances, slots=True for memory efficiency, on_setattr for post-set hooks, __attrs_post_init__ hook, evolve() for copying with changes, asdict()/astuple() for serialization, and cattrs integration for complex serialization.

Free tier python attrs attr
70
7052
Packages Evaluated
25606
Need Evaluation
194
Need Re-evaluation
Community Powered