
ToolSDK MCP Registry
The Enterprise MCP Registry & Gateway. A unified infrastructure to discover, secure, and execute Model Context Protocol (MCP) tools. Exposes local processes (STDIO) and remote servers (StreamableHTTP) via a unified HTTP API with built-in Sandbox and OAuth 2.1 support.
🔍 Browse 4547+ Tools • 🐳 Self-hosted • 📦 Use as SDK • ➕ Add Server • 🎥 Video Tutorial
Start Here
- 🔍 I want to find an MCP Server → Browse Directory
- 🔌 I want to integrate MCP tools into my AI app → Integration Guide
- 🚀 I want to deploy an MCP Gateway → Deployment Guide
- ➕ I want to submit my MCP Server → Contribution Guide
[!IMPORTANT] Pro Tip: If a server is marked as
validated: true, you can use it instantly with Vercel AI SDK:const tool = await toolSDK.package('<packageName>', { ...env }).getAISDKTool('<toolKey>');Want validation? Ask AI: "Analyze the
make buildtarget in the Makefile and the scripts it invokes, and determine how an MCP server gets marked asvalidated: true."
Getting Started
Deploy Enterprise Gateway (Recommended)
Deploy your own private MCP Gateway & Registry in minutes. This provides the full feature set: Federated Search, Remote Execution, Sandbox, and OAuth.
⚡ Quick Deploy (One-Liner)
Start the registry immediately with default settings:
docker compose up -d
Did this save you time? Give us a Star on GitHub — it helps others discover this registry!
Configuration:
- Set
MCP_SANDBOX_PROVIDER=LOCALin.envfile if you want to disable the sandbox (not recommended for production). - See Configuration Guide for full details.
[!TIP] Tip for Private Deployment: This registry contains 4547+ public MCP servers. If you only need a specific subset for your private environment, you can prune the
packages/directory. 📖 See Package Management Guide for details.
That's it! Your self-hosted MCP registry is now running with:
- 🌐 HTTP API with OpenAPI documentation
- 🛡️ Secure Sandbox execution for AI agent tools
- 🔍 Full-text search (Meilisearch)
🎉 Access Your Private MCP Registry
- 🌐 Local Web Interface: http://localhost:3003
- 📚 Swagger API Docs: http://localhost:3003/swagger
- 🔍 Search & Execute 4547+ MCP Servers remotely
- 🤖 Integrate with your AI agents, chatbots, and LLM applications
🌐 Remote Tool Execution Example
Execute any MCP tool via HTTP API - perfect for AI automation, chatbot integrations, and serverless deployments:
curl -X POST http://localhost:3003/api/v1/packages/run \
-H "Content-Type: application/json" \
-d '{
"packageName": "@modelcontextprotocol/server-everything",
"toolKey": "echo",
"inputData": {
"message": "Hello from ToolSDK MCP Registry!"
},
"envs": {}
}'
🔌 MCP Gateway (Streamable HTTP Proxy)
The registry also acts as an MCP Gateway — any registered package can be accessed as a standard Streamable HTTP endpoint, even if the original server is STDIO-only.
Endpoint: POST /mcp/<packageName>
Pass environment variables via x-mcp-env-* headers:
curl -X POST http://localhost:3003/mcp/@modelcontextprotocol/server-github \
-H "Content-Type: application/json" \
-H "x-mcp-env-GITHUB_PERSONAL_ACCESS_TOKEN: ghp_your_token" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
The server returns a mcp-session-id header — include it in subsequent requests to reuse the session (sessions expire after 30 min).
This is useful for:
- Protocol Bridging — Expose local STDIO servers as remote HTTP endpoints
- Centralized Access — Give AI agents a single HTTP gateway to all MCP tools
- Client Compatibility — Connect from any MCP client that supports Streamable HTTP
Alternative: Use as Registry SDK (Data Only)
Alternative: Use as Registry SDK (Data Only)
If you only need to access the list of MCP servers programmatically (without execution or gateway features), you can use the NPM package.
npm install @toolsdk.ai/registry
Usage
Perfect for building your own directory or analysis tools:
import mcpServerLists from '@toolsdk.ai/registry/indexes/packages-list.json';
Access via Public API (No Installation Required)
Fetch the complete MCP server registry programmatically:
curl https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json
// JavaScript/TypeScript - Fetch API
const mcpServers = await (
await fetch('https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json')
).json();
// Use for AI agent tool discovery, LLM integrations, etc.
console.log(mcpServers);
# Python - For AI/ML projects
import requests
mcp_servers = requests.get(
'https://toolsdk-ai.github.io/toolsdk-mcp-registry/indexes/packages-list.json'
).json()
# Perfect for LangChain, CrewAI, AutoGen integrations
Why ToolSDK MCP Registry?
ToolSDK MCP Registry is an enterprise-grade gateway for Model Context Protocol (MCP) servers. It solves the challenge of securely discovering and executing AI tools in production environments.
Key Features
- Federated Registry - Unified search across local private servers and the official
@modelcontextprotocol/registry. - Unified Interface - Access local STDIO tools and remote StreamableHTTP servers via a single, standardized HTTP API.
- Secure Sandbox - Execute untrusted tools in isolated environments (supports E2B, Daytona, Sandock).
- OAuth 2.1 Proxy - Built-in OAuth 2.1 implementation to handle complex authentication flows for your agents. Integration Guide
- Private & Self-Hosted - Full control over your data and infrastructure with Docker deployment.
- Developer-Friendly - OpenAPI/Swagger documentation and structured JSON configs.
Use Cases
- Enterprise AI Gateway - Centralize tool access for all your internal LLM applications.
- Secure Tool Execution - Run community MCP servers without risking your local environment.
- Protocol Adaptation - Connect remote agents (via HTTP API) to local CLI tools (via STDIO).
- Unified Discovery - One API to search and manage thousands of tools.
Architecture
graph TD
subgraph ClientSide ["Client Side"]
LLM["🤖 AI Agent / LLM"]
User["👤 User / Developer"]
end
subgraph DockerEnv ["🐳 Self-Hosted Infrastructure"]
subgraph RegistryCore ["Registry Core"]
API["🌐 Registry API"]
Search["🔍 Meilisearch"]
DB["📚 Registry Data"]
OAuth["🔐 OAuth Proxy"]
end
subgraph RuntimeEnv ["Runtime Environment"]
Local["💻 Local Exec"]
Sandbox["🛡️ Secure Sandbox"]
MCPServer["⚙️ MCP Server"]
end
end
User -->|Search Tools| API
LLM -->|Execute Tool| API
LLM -->|Auth Flow| OAuth
API <-->|Query Index| Search
API -->|Read Metadata| DB
API -->|Run Tool| Local
API -->|Run Tool| Sandbox
Local -->|Execute| MCPServer
Sandbox -->|Execute| MCPServer
What You Get
This open-source project provides:
- Structured Registry - 4547+ MCP servers with metadata
- Unified Gateway - HTTP API to query and execute tools remotely
- Auto-Generated Docs - Always up-to-date README and API documentation
✅ Validated Packages = One-Line Integration (ToolSDK)
Some packages in this registry are marked as validated: true.
[!NOTE] What does
validated: truemean for you?
- You can load the MCP package directly via our ToolSDK NPM client and get ready-to-use tool adapters (e.g. Vercel AI SDK tools) without writing your own tool schema mapping.
- The registry index includes the discovered
toolsmetadata for validated packages, so you can pick atoolKeyand call it immediately.Where is this flag stored?
- See
indexes/packages-list.jsonentries (e.g.{"validated": true, "tools": { ... } }).
Example: Use a validated package with Vercel AI SDK
Template: const tool = await toolSDK.package('<packageName>', { ...env }).getAISDKTool('<toolKey>');
// import { generateText } from 'ai';
// import { openai } from '@ai-sdk/openai'
import { ToolSDKApiClient } from 'toolsdk/api';
const toolSDK = new ToolSDKApiClient({ apiKey: process.env.TOOLSDK_AI_API_KEY });
const searchMCP = await toolSDK.package('@toolsdk.ai/tavily-mcp', { TAVILY_API_KEY: process.env.TAVILY_API_KEY });
const searchTool = await searchMCP.getAISDKTool('tavily-search');
// const completion = await generateText({
// model: openai('gpt-4.1'),
// messages: [{
// role: 'user',
// content: 'Help me search for the latest AI news',
// }],
// tools: { searchTool, emailTool },
// });
Available as:
- Docker Image - Full-featured Gateway & Registry
- NPM Package - TypeScript/JavaScript SDK for data access
- Raw Data - JSON endpoints for direct integration
MCP Servers Directory
4547+ AI Agent Tools, LLM Integrations & Automation Servers
[!NOTE] ⭐ Featured below: Hand-picked, production-ready MCP servers verified by our team.
📚 Looking for all 4547+ servers? Check out All MCP Servers for the complete list.
[!TIP] If a package is marked as
validated: truein the index, you can usually wire it up in minutes via ToolSDK (e.g.getAISDKTool(toolKey)).
Browse by category: Developer Tools, AI Agents, Databases, Cloud Platforms, APIs, and more!
Uncategorized
Tools that haven’t been sorted into a category yet. AI will categorize it later.
- ✅ @antv/mcp-server-chart: A visualization mcp contains 25+ visual charts using @antvis. Using for chart generation and data analysis. (25 tools) (node)
- ✅ @atlassian-dc-mcp/bitbucket: MCP server for Atlassian Bitbucket Data Center - interact with repositories and code (9 tools) (node)
- ✅ @atlassian-dc-mcp/jira: MCP server for Atlassian Jira Data Center - search, view, and create issues (6 tools) (node)
- ✅ @bankless/onchain-mcp: Integrates with blockchain networks to enable smart contract interaction, transaction history access, and on-chain data exploration through specialized tools for reading contract state, retrieving ABIs, and filtering event logs. (10 tools) (node)
- ✅ @bnb-chain/mcp: Enables direct interaction with BNB Chain and other EVM-compatible networks for blockchain operations including block exploration, smart contract interaction, token management, wallet operations, and Greenfield storage functionality. (40 tools) (node)
- ✅ @browserbasehq/mcp-server-browserbase: MCP server for AI web browser automation using Browserbase and Stagehand (9 tools) (node)
- ✅ @browserstack/mcp-server: Integrates with BrowserStack's testing infrastructure to enable automated and manual testing across browsers, devices, and platforms for debugging cross-browser issues and verifying mobile app functionality. (20 tools) (node)
- ✅ @configcat/mcp-server: Enables AI agents to interact with ConfigCat, a feature flag service for teams. (77 tools) (node)
- ✅ @connorbritain/mssql-mcp-server: MCP server for Microsoft SQL Server - schema discovery, profiling, and safe data operations (20 tools) (node)
- ✅ @cyanheads/pubmed-mcp-server: Enables AI systems to search, retrieve, and analyze biomedical literature from PubMed for evidence-based research, citation generation, and data visualization (5 tools) (node)
- ✅ @decodo/mcp-server: Enable your AI agents to scrape and parse web content dynamically, including geo-restricted sites (5 tools) (node)
- ✅ @delorenj/mcp-server-trello: MCP server for Trello boards with rate limiting, type safety, and comprehensive API integration. (34 tools) (node)
- ✅ @dinesh-nalla-se/playwright-mcp: Playwright Tools for MCP (22 tools) (node)
- ✅ @dubuqingfeng/gitlab-mcp-server: GitLab MCP (Model Context Protocol) server for AI agents (13 tools) (node)
- ✅ @duongkhuong/mcp-backlog: MCP server for Backlog API integration with AI agents. (37 tools) (node)
- ✅ @duongkhuong/mcp-redmine: MCP server for Redmine API integration with AI agents. (14 tools) (node)
- ✅ @f2c/mcp: Bridges Figma design files to code generation, enabling direct conversion of designs into HTML, CSS, and other assets with customizable output paths and file organization. (2 tools) (node)
- ✅ @flightradar24/fr24api-mcp: MCP server providing access to the Flightradar24 API for real-time and historical flight data (15 tools) (node)
- ✅ @glifxyz/mymcpspace-mcp-server: Enables AI interaction with MyMCPSpace social media platform for creating posts, replying to content, toggling likes, retrieving feed data, and updating usernames through authenticated API communication. (5 tools) (node)
- ✅ @gonetone/mcp-server-taiwan-weather: 用於取得臺灣中央氣象署 API 資料的 Model Context Protocol (MCP) Server (1 tools) (node)
- ✅ @incodetech/incode-idv-mcp: MCP server for Incode IDV, providing identity verification tools for AI assistants. (5 tools) (node)
- ✅ @index9/mcp: Real-time model intelligence for your AI assistant. (3 tools) (node)
- ✅ @ivotoby/contentful-management-mcp-server: Integrate with Contentful's Content Management API for CMS management. (40 tools) (node)
- ✅ @kekwanulabs/syncline-mcp-server: Syncline MCP Server (TypeScript) - AI-powered meeting scheduling with intelligent auto-scheduling (4 tools) (node)
- ✅ @kirbah/mcp-youtube: YouTube MCP server for token-optimized, structured data using the YouTube Data API v3. (9 tools) (node)
- ✅ @koki-develop/esa-mcp-server: A Model Context Protocol (MCP) server for esa.io (10 tools) (node)
- ✅ @kontent-ai/mcp-server: Connect to Kontent.ai to manage content, types, taxonomies, and workflows via natural language (40 tools) (node)
- ✅ @letta-ai/memory-mcp: MCP server for AI memory management using Letta - Standard MCP format (5 tools) (node)
- ✅ @localstack/localstack-mcp-server: A LocalStack MCP Server providing essential tools for local cloud development & testing (8 tools) (node)
- ✅ @mapbox/mcp-devkit-server: Provides AI assistants with direct access to Mapbox developer APIs and documentation. (17 tools) (node)
- ✅ @mehmetsenol/gorev-mcp-server: Task management system for AI assistants with MCP protocol, templates, and bilingual support (TR/EN) (41 tools) (node)
- ✅ @mfukushim/map-traveler-mcp: Integrates with Google Maps to create virtual travel experiences where users can navigate real-world routes with customizable avatars, discover nearby facilities, and share journeys on Bluesky. (8 tools) (node)
- ✅ @microsoft/clarity-mcp-server: Enables AI to fetch and analyze Microsoft Clarity website analytics data including metrics like scroll depth, engagement time, and traffic with filtering by browser, device, and country. (1 tools) (node)
- ✅ @moralisweb3/api-mcp-server: Integrates with Moralis Web3 API to enable blockchain data access, token analysis, and smart contract interactions without requiring deep Web3 development knowledge (93 tools) (node)
- ✅ @mzxrai/mcp-openai: Generate text using OpenAI's language models. (1 tools) (node)
- ✅ @noditlabs/nodit-mcp-server: Provides blockchain context through Nodit's APIs, enabling real-time interaction with multiple protocols including Ethereum, Polygon, and Aptos for token information and on-chain activity analysis. (9 tools) (node)
- ✅ @picahq/mcp: A Model Context Protocol Server for Pica (4 tools) (node)
- ✅ @portel/ncp: N-to-1 MCP Orchestration. Unified gateway for multiple MCP servers with intelligent tool discovery. (2 tools) (node)
- ✅ @professional-wiki/mediawiki-mcp-server: Integrates with MediaWiki instances through REST API to enable searching pages, retrieving content in multiple formats, accessing file information, viewing revision history, and performing authenticated operations like creating and updating pages with automatic wiki discovery and dynamic configuration management. (7 tools) (node)
- ✅ @pubnub/mcp: Enables AI assistants to interact with PubNub's realtime communication platform for retrieving documentation, accessing SDK information, and utilizing messaging APIs without leaving their conversation context. (11 tools) (node)
- ✅ @shodh/memory-mcp: Persistent AI memory with semantic search. Store and recall context across sessions. (10 tools) (node)
- ✅ @shopana/novaposhta-mcp-server: MCP Server for Nova Poshta API integration with AI assistants (50 tools) (node)
- ✅ @smartbear/mcp: MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow. (67 tools) (node)
- ✅ @studious-xiaoyu/oracle-link: Oracle MCP Query Server (Node.js) - Read-only SELECT via MCP (3 tools) (node)
- ✅ @sumup/mcp: Tools to explore SumUp accounts, payments, customers, and payouts. (49 tools) (node)
- ✅ @symbioticsec/symbiotic-mcp-server: Symbiotic CLI MCP Server for security scanning and analysis (4 tools) (node)
- ✅ @tigerdata/pg-aiguide: Comprehensive PostgreSQL documentation and best practices, including ecosystem tools (3 tools) (node)
- ✅ @tigerdata/tiger-skills-mcp-server: Provider agnostic skills implementation, with skills sourced from local paths or GitHub repositories (1 tools) (node)
- ✅ @toolsdk-remote/com-cloudflare-mcp-mcp: Cloudflare MCP servers (2 tools) (node)
- ✅ @toolsdk-remote/com-mermaidchart-mermaid-mcp: MCP server for Mermaid diagram validation and rendering (2 tools) (node)
- ✅ @toolsdk-remote/com-microsoft-microsoft-learn-mcp: Official Microsoft Learn MCP Server – real-time, trusted docs & code samples for AI and LLMs. (3 tools) (node)
- ✅ @toolsdk-remote/com-redpanda-docs-mcp: Get authoritative answers to questions about Redpanda. (1 tools) (node)
- ✅ @toolsdk-remote/com-sonatype-dependency-management-mcp-server: Sonatype component intelligence: versions, security analysis, and Trust Score recommendations (3 tools) (node)
- ✅ @toolsdk-remote/com-wallet-connectors-wallet-verifier-mcp: MCP server for verifying EUDI/Talao wallet data via OIDC4VP (pull) for AI agents. (2 tools) (node)
- ✅ @toolsdk-remote/dev-ohmyposh-validator: Validate oh-my-posh configurations and segment snippets against the official schema. (2 tools) (node)
- ✅ @toolsdk-remote/dev-promplate-hmr: Docs for hot-module-reload and reactive programming for Python (
hmron PyPI) (3 tools) (node) - ✅ @toolsdk-remote/exa: Fast, intelligent web search and web crawling.
New mcp tool: Exa-code is a context tool for coding (1 tools) (node)
- ✅ @toolsdk-remote/explorium-mcp: Access live company and contact data from Explorium's AgentSource B2B platform. (1 tools) (node)
- ✅ @toolsdk-remote/garden-stanislav-svelte-llm-svelte-llm-mcp: An MCP server that provides access to Svelte 5 and SvelteKit documentation (2 tools) (node)
- ✅ @toolsdk-remote/io-cycloid-mcp-server: An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform (6 tools) (node)
- ✅ @toolsdk-remote/io-github-isakskogstad-kolada-mcp: Swedish municipality statistics from Kolada API. 6000+ KPIs for all 290 municipalities. (21 tools) (node)
- ✅ @toolsdk-remote/io-github-isakskogstad-scb-mcp: MCP server for Statistics Sweden (SCB) - 1200+ tables with population, economy, environment data (10 tools) (node)
- ✅ @toolsdk-remote/io-github-ksaklfszf921-riksdag-regering-mcp: Svenska Riksdagens och Regeringskansliets öppna data - 27 verktyg för politik, dokument och analys (32 tools) (node)
- ✅ @toolsdk-remote/io-github-payram-payram-helper-mcp: Remote MCP server to integrate and validate self-hosted Payram deployments. (35 tools) (node)
- ✅ @toolsdk-remote/io-github-selisedigitalplatforms-l0-py-blocks-mcp: A Model Context Protocol (MCP) server for Selise Blocks Cloud integration (36 tools) (node)
- ✅ @toolsdk-remote/klavis-strata: MCP server for progressive tool usage at any scale (see https://klavis.ai) (1 tools) (node)
- ✅ @toolsdk-remote/packmind-mcp-server: Packmind captures, scales, and enforces your organization's technical decisions. (1 tools) (node)
- ✅ @toolsdk.ai/mixpanel-mcp-server: A Model Context Protocol (MCP) server for integrating Mixpanel analytics into AI workflows. This server allows AI assistants like Claude to track events, page views, user signups, and update user profiles in Mixpanel. (4 tools) (node)
- ✅ @toolsdk.ai/tavily-mcp: An MCP server that implements web search, extract, mapping, and crawling through the Tavily API. (4 tools) (node)
- ✅ @upstash/context7-mcp: Connects to Context7.com's documentation database to provide up-to-date library and framework documentation with intelligent project ranking and customizable token limits. (2 tools) (node)
- ✅ @variflight-ai/variflight-mcp: Integrates with Variflight API to provide real-time flight information, schedules, aircraft tracking, airport weather forecasts, and comfort metrics for travel planning and aviation monitoring applications. (8 tools) (node)
- ✅ @wildcard-ai/deepcontext: Advanced codebase indexing and semantic search MCP server (4 tools) (node)
- ✅ @withinfocus/tba-mcp-server: The Blue Alliance MCP Server (61 tools) (node)
- ✅ airtable-mcp-server: Read and write access to Airtable database schemas, tables, and records. (15 tools) (node)
- ✅ altmetric-mcp: MCP server for Altmetric APIs - track research attention across news, policy, social media, and more (9 tools) (node)
- ✅ anilist-mcp: MCP server that interfaces with the AniList API, allowing LLM clients to access and interact with anime, manga, character, staff, and user data from AniList (44 tools) (node)
- ✅ attio-mcp: AI-powered Attio CRM access. Manage contacts, companies, deals, tasks, notes and workflows. (34 tools) (node)
- ✅ base-network-mcp-server: Provides a bridge to the Base blockchain network for wallet management, balance checking, and transaction execution through natural language commands, eliminating the need to manage technical blockchain details. (4 tools) (node)
- ✅ cerebras-code-mcp: Model Context Protocol (MCP) server for Cerebras to make coding faster in AI-first IDEs (1 tools) (node)
- ✅ clinicaltrialsgov-mcp-server: Integrates with ClinicalTrials.gov REST API to search clinical trials by conditions, interventions, locations, and status, plus retrieve detailed study information by NCT ID with automatic data cleaning and local backup storage. (2 tools) (node)
- ✅ etherscan-mcp: Provides a bridge to the Etherscan API for querying Ethereum blockchain data including account balances, transactions, contracts, tokens, gas metrics, and network statistics. (6 tools) (node)
- ✅ feuse-mcp: Automates Figma design-to-code workflows by extracting design data, downloading SVG assets, analyzing color variables, and generating API models with design token conversion for CSS frameworks like UnoCSS and TailwindCSS. (8 tools) (node)
- ✅ firecrawl-mcp: Integration with FireCrawl to provide advanced web scraping capabilities for extracting structured data from complex websites. (8 tools) (node)
- ✅ flowbite-mcp: MCP server to convert Figma designs to Flowbite UI components in Tailwind CSS (2 tools) (node)
- ✅ fred-mcp-server: Provides a bridge to the Federal Reserve Economic Data API for retrieving economic time series data like Overnight Reverse Repurchase Agreements and Consumer Price Index with customizable parameters for date ranges and sorting options. (1 tools) (node)
- ✅ garth-mcp-server: Integrates with Garmin Connect to provide access to fitness and health data including sleep statistics, daily stress, and intensity minutes with customizable date ranges. (30 tools) (python)
- ✅ gmail-mcp: Integrates with Gmail to enable email search, retrieval, and interaction for natural language-driven email management and analysis tasks. (6 tools) (python)
- ✅ gologin-mcp: Manage your GoLogin browser profiles and automation directly through AI conversations. This MCP server connects to the GoLogin API, letting you create, configure, and control browser profiles using natural language. (59 tools) (node)
- ✅ ha-mcp-server: Control Home Assistant lights and scenes. Lights only by design for safety. (11 tools) (node)
- ✅ hostinger-api-mcp: MCP server for Hostinger API (118 tools) (node)
- ✅ image-recognition-mcp: MCP server for AI-powered image recognition and description using OpenAI vision models. (1 tools) (node)
- ✅ image-recongnition-mcp: MCP server for AI-powered image recognition and description using OpenAI vision models. (1 tools) (node)
- ✅ inner-monologue-mcp: An MCP (Model Context Protocol) server that implements a cognitive reasoning tool inspired by Google DeepMind's Inner Monologue research. (1 tools) (node)
- ✅ kit-mcp-server: MCP server for Kit.com (ConvertKit) - manage subscribers, tags, sequences, broadcasts (29 tools) (node)
- ✅ korea-stock-mcp: MCP server for korea stock (8 tools) (node)
- ✅ kubeview-mcp: Read-only Model Context Protocol MCP server enabling code-driven AI analysis of Kubernetes clusters. (10 tools) (node)
- ✅ linkly-mcp-server: Create and manage short links, track clicks, and automate URL management (19 tools) (node)
- ✅ math-mcp-learning-server: Educational MCP server with 12 math/stats tools, visualizations, and persistent workspace (17 tools) (python)
- ✅ mcp-arr-server: MCP server for *arr media suite - Sonarr, Radarr, Lidarr, Readarr, Prowlarr (67 tools) (node)
- ✅ mcp-cook: Provides access to a collection of over 200 food and cocktail recipes, enabling dish information retrieval and ingredient-based meal suggestions. (2 tools) (node)
- ✅ mcp-fathom-analytics: Integrates with Fathom Analytics to retrieve account information, manage sites, track events, generate reports, and monitor real-time visitor data using the @mackenly/fathom-api SDK (5 tools) (node)
- ✅ mcp-image: AI image generation MCP server using Nano Banana Pro with intelligent prompt enhancement (1 tools) (node)
- ✅ mcp-local-rag: Easy-to-setup local RAG server with minimal configuration (5 tools) (node)
- ✅ mcp-neo4j-cypher: Provides natural language interfaces to Neo4j graph databases for executing Cypher queries, storing knowledge graph data, and building persistent memory structures through conversational interactions. (3 tools) (python)
- ✅ mcp-pickaxe: MCP server for Pickaxe API - manage AI agents, knowledge bases, users, and analytics (17 tools) (node)
- ✅ mcp-pihole-server: Pi-hole v6 MCP server - manage DNS blocking, stats, whitelists/blacklists (16 tools) (node)
- ✅ mcp-property-valuation-server: MCP服务器,提供房产小区评级和评估功能 (3 tools) (node)
- ✅ mcp-rubber-duck: An MCP server that bridges to multiple OpenAI-compatible LLMs - your AI rubber duck debugging panel (14 tools) (node)
- ✅ mcp-server-ens: Integrates with the Ethereum Name Service to resolve ENS names to addresses, perform lookups, retrieve records, check availability, get prices, and explore name history through configurable Ethereum network providers. (8 tools) (node)
- ✅ mcp-server-tempmail: MCP server for temporary email management using ChatTempMail API (9 tools) (node)
- ✅ mcp-threatintel-server: Unified threat intel - OTX, AbuseIPDB, GreyNoise, abuse.ch, Feodo Tracker (17 tools) (node)
- ✅ mcp-turso-cloud: Provides a bridge between AI assistants and Turso SQLite databases, enabling organization-level management and database-level queries with persistent context, schema exploration, and vector similarity search capabilities. (9 tools) (node)
- ✅ mcp-zebrunner: Unified Zebrunner MCP server for TCM test cases, suites, coverage analysis, launchers, etc. (6 tools) (node)
- ✅ meta-api-mcp-server: You can connect any API to LLMs. This enables AI to interact directly with APIs (69 tools) (node)
- ✅ minimax-mcp-js: Official JavaScript implementation that integrates with MiniMax's multimodal capabilities for image generation, video creation, text-to-speech, and voice cloning across multiple transport modes. (10 tools) (node)
- ✅ mixpanel-mcp-server: A Model Context Protocol (MCP) server for integrating Mixpanel analytics into AI workflows. This server allows AI assistants like Claude to track events, page views, user signups, and update user profiles in Mixpanel. (4 tools) (node)
- ✅ octocode-mcp: AI code research platform. Search, analyze, and extract insights from any GitHub repository. (5 tools) (node)
- ✅ opik-mcp: Interact with Opik prompts, traces, and metrics through the Model Context Protocol. (13 tools) (node)
- ✅ qweather-mcp: a qweather mcp server (9 tools) (node)
- ✅ ref-tools-mcp: Integrates with Ref.tools documentation search service to provide curated technical documentation access, web search fallback, and URL-to-markdown conversion for efficient developer reference during coding workflows. (2 tools) (node)
- ✅ selenium-webdriver-mcp: Selenium Tools for MCP (56 tools) (node)
- ✅ source-map-parser-mcp: Maps minified JavaScript stack traces back to original source code locations for efficient production error debugging. (2 tools) (node)
- ✅ starling-bank-mcp: Allow AI systems to view and control your Starling Bank account via MCP. (24 tools) (node)
- ✅ strava-mcp-server: MCP server for accessing Strava API (19 tools) (node)
- ✅ sub-agents-mcp: MCP server for delegating tasks to specialized AI assistants in Cursor, Claude, and Gemini (1 tools) (node)
- ✅ tachibot-mcp: Multi-model AI orchestration with 31 tools, YAML workflows, and 5 token-optimized profiles. (23 tools) (node)
- ✅ taskqueue-mcp: Structured task management system that breaks down complex projects into manageable tasks with progress tracking, user approval checkpoints, and support for multiple LLM providers. (14 tools) (node)
- ✅ testdino-mcp: A MCP server for TestDino (6 tools) (node)
- ✅ tmdb-mcp-server: MCP server for The Movie Database (TMDB) API (13 tools) (node)
- ✅ todoist-mcp-server: Provides a bridge to the Todoist task management platform, enabling advanced project and task management capabilities like creating tasks, organizing projects, managing deadlines, and team collaboration. (33 tools) (node)
- ✅ unreal-engine-mcp-server: MCP server for Unreal Engine 5 with 13 tools for game development automation. (13 tools) (node)
- ✅ uranium-tools-mcp: MCP for Uranium NFT tools to mint, list, and manage digital assets on the permaweb. (4 tools) (node)
- ✅ videodb-director-mcp: Bridges to VideoDB's video processing capabilities for searching, indexing, subtitling, and manipulating video content through specialized context resources. (4 tools) (python)
- ✅ welcome-text-generator-mcp: MCP Server für automatische Generierung professioneller Willkommenstexte für neue Mitarbeiter (3 tools) (node)
- ✅ xcodebuildmcp: Enables building, running, and debugging iOS and macOS applications through Xcode with tools for project discovery, simulator management, app deployment, and UI automation testing. (83 tools) (node)
- ✅ yazio-mcp: MCP server for accessing Yazio user & nutrition data (unofficial) (14 tools) (node)
Aggregators
Servers that let you access multiple apps and tools through one MCP server.
- ✅ @illuminaresolutions/n8n-mcp-server: Bridges Claude with n8n automation workflows, enabling direct creation, execution, and management of workflows, credentials, and enterprise features without switching contexts. (33 tools) (node)
- ✅ @modelcontextprotocol/server-everything: Test protocol features and tools for client compatibility. (8 tools) (node)
- ✅ @noveum-ai/mcp-server: Converts OpenAPI specifications from API.market into tools for accessing over 200 services including image generation, geocoding, and content detection through a unified authentication system (34 tools) (node)
- ✅ @pinkpixel/mindbridge: Bridges multiple LLM providers including OpenAI, Anthropic, Google, DeepSeek, OpenRouter, and Ollama through a unified interface, enabling comparison of responses and leveraging specialized reasoning capabilities across different models. (3 tools) (node)
- ✅ @wopal/mcp-server-hotnews: Aggregates real-time trending topics from major Chinese social platforms and news sites. (1 tools) (node)
- ✅ acp-mcp-server: Bridges Agent Communication Protocol networks with MCP clients, enabling access to complex multi-agent workflows through intelligent agent discovery, routing, and multi-modal message conversion with support for synchronous, asynchronous, and streaming execution patterns. (16 tools) (python)
- ✅ hal-mcp: Transforms OpenAPI/Swagger specifications into dynamic HTTP tools with secret management and URL restrictions, enabling secure API integration through automatic tool generation from API documentation. (8 tools) (node)
- ✅ mcp-hub-mcp: Centralizes multiple MCP servers into a unified hub, enabling seamless tool discovery and routing across specialized servers for complex workflows without managing individual connections. (7 tools) (node)
Art & Culture
Explore art collections, museums, and cultural heritage with AI-friendly tools.
- ✅ @cloudwerxlab/gpt-image-1-mcp: Enables direct image generation and editing through OpenAI's gpt-image-1 model with support for text prompts, file paths, and base64 encoded inputs for creative workflows and visual content creation. (2 tools) (node)
- ✅ @jayarrowz/mcp-figma: Integrates with Figma's API to enable viewing, manipulating, and collaborating on design files through comprehensive access to file operations, comments, components, and team resources. (31 tools) (node)
- ✅ @kailashg101/mcp-figma-to-code: Extracts and analyzes components from Figma design files, enabling seamless integration between Figma designs and React Native development through component hierarchy processing and metadata generation. (3 tools) (node)
- ✅ @openmcprouter/mcp-server-ghibli-video: Transforms static images into animated Ghibli-style videos through the GPT4O Image Generator API with tools for credit balance checking and task monitoring. (3 tools) (node)
- ✅ @recraft-ai/mcp-recraft-server: Integrates with Recraft's image generation API to create and edit raster and vector images, apply custom styles, manipulate backgrounds, upscale images, and perform vectorization with fine-grained control over artistic properties. (9 tools) (node)
- ✅ 4oimage-mcp: Provides a bridge between AI systems and the 4o-image API for generating and editing high-quality images through text prompts with real-time progress updates. (1 tools) (node)
- ✅ ableton-mcp: Enables control of Ableton Live music production software through a bidirectional communication system that supports track creation, MIDI editing, playback control, instrument loading, and library browsing for music composition and sound design workflows. (16 tools) (python)
- ✅ blender-mcp: Enables natural language control of Blender for 3D scene creation, manipulation, and rendering without requiring knowledge of Blender's interface or Python API. (17 tools) (python)
- ✅ discogs-mcp-server: Provides a bridge to the Discogs API for searching music databases, managing collections, and accessing marketplace listings with comprehensive artist and release information. (53 tools) (node)
- ✅ figma-mcp: Interact with Figma design files through the Figma REST API for design analysis, feedback, and collaboration. (5 tools) (node)
- ✅ grasshopper-mcp: Connects Grasshopper parametric design software with Claude through a bidirectional TCP server and Python bridge, enabling natural language control of architectural and engineering modeling workflows. (8 tools) (python)
- ✅ grok2-image-mcp-server: Enables AI assistants to generate images through the Grok2 model using stdio transport for seamless integration into existing workflows. (1 tools) (node)
- ✅ mcp-openverse: Integrates with Openverse's Creative Commons image collection to search and retrieve openly-licensed images with detailed filtering options, attribution information, and specialized essay illustration features for finding relevant academic content. (5 tools) (node)
- ✅ mcp-server-stability-ai: Integrates Stability AI's image generation and manipulation capabilities for editing, upscaling, and more via Stable Diffusion models. (13 tools) (node)
- ✅ mcp-sonic-pi: Connects AI systems to the Sonic Pi music programming environment, enabling creation and control of musical compositions through Ruby code with features for playback, pattern access, and live coding. (4 tools) (python)
- ✅ midi-file-mcp: Parse and manipulate MIDI files based on Tone.js (11 tools) (node)
- ✅ minimax-mcp-js: Official JavaScript implementation that integrates with MiniMax's multimodal capabilities for image generation, video creation, text-to-speech, and voice cloning across multiple transport modes. (10 tools) (node)
- ✅ nasa-mcp-server: Integrates with NASA and JPL APIs to provide access to astronomy images, satellite data, space weather information, Mars rover photos, and more through a unified interface built with TypeScript. (13 tools) (node)
- ✅ penpot-mcp: Integrates with Penpot's API to enable project browsing, file retrieval, object searching, and visual component export with automatic screenshot generation for converting UI designs into functional code. (10 tools) (python)
- ✅ replicate-flux-mcp: Integrates with Replicate's Flux image generation model, enabling image creation capabilities within conversation interfaces through a simple API token setup and TypeScript implementation available as both an npm module and Docker container. (7 tools) (node)
- ✅ sketchfab-mcp: Provides a streamlined interface to the Sketchfab API for searching and downloading 3D models with filtering options for animated or rigged content. (1 tools) (python)
- ✅ sketchfab-mcp-server: Integrates with Sketchfab to enable searching, viewing details, and downloading 3D models in various formats using an API key for authentication. (4 tools) (node)
- ✅ together-mcp: Integrates with Together AI's Flux.1 Schnell model to provide high-quality image generation with customizable dimensions, clear error handling, and optional image saving. (1 tools) (node)
- ✅ wikipedia-mcp: Provides a structured interface for searching and retrieving Wikipedia articles in clean Markdown format, enabling access to up-to-date encyclopedia information without hallucinating facts. (2 tools) (node)
Browser Automation
Tools for browsing, scraping, and automating web content in AI-compatible formats.
- ✅ @agentdeskai/browser-tools-mcp: A Model Context Protocol (MCP) server that provides AI-powered browser tools integration. This server works in conjunction with the Browser Tools Server to provide AI capabilities for browser debugging and analysis. (14 tools) (node)
- ✅ @angiejones/mcp-selenium: Automates web browser actions with Selenium WebDriver. (14 tools) (node)
- ✅ @automatalabs/mcp-server-playwright: Control browsers to perform sophisticated web interactions and visual tasks. (10 tools) (node)
- ✅ @browserstack/mcp-server: Integrates with BrowserStack's testing infrastructure to enable automated and manual testing across browsers, devices, and platforms for debugging cross-browser issues and verifying mobile app functionality. (20 tools) (node)
- ✅ @cmann50/mcp-chrome-google-search: Integrates Google search and webpage content extraction via Chrome browser automation, enabling access up-to-date web information for tasks like fact-checking and research. (2 tools) (node)
- ✅ @debugg-ai/debugg-ai-mcp: Provides zero-configuration end-to-end testing for web applications by creating secure tunnels to local development servers and spawning testing agents that interact with web interfaces through natural language descriptions, returning detailed test results with execution recordings and screenshots. (1 tools) (node)
- ✅ @deventerprisesoftware/scrapi-mcp: Enables web scraping from sites with bot detection, captchas, or geolocation restrictions through residential proxies and automated captcha solving for content extraction in HTML or Markdown formats. (2 tools) (node)
- ✅ @executeautomation/playwright-mcp-server: A Model Context Protocol server that provides browser automation capabilities using Playwright. This server enables LLMs to interact with web pages, take screenshots, generate test code, web scraps the page and execute JavaScript in a real browser environment. (32 tools) (node)
- ✅ @just-every/mcp-read-website-fast: Extracts web content and converts it to clean Markdown format using Mozilla Readability for intelligent article detection, with disk-based caching, robots.txt compliance, and concurrent crawling capabilities for fast content processing workflows. (1 tools) (node)
- ✅ @kazuph/mcp-browser-tabs: Integrates with Chrome on macOS to retrieve and manage browser tab information using AppleScript. (4 tools) (node)
- ✅ @kazuph/mcp-fetch: Integrates web scraping and image processing capabilities to fetch, extract, and optimize web content. (1 tools) (node)
- ✅ @kwp-lab/mcp-fetch: A Model Context Protocol server that provides web content fetching capabilities (1 tools) (node)
- ✅ @modelcontextprotocol/server-puppeteer: Navigate websites, fill forms, and capture screenshots programmatically. (7 tools) (node)
- ✅ @octomind/octomind-mcp: Enables AI-driven test automation through the Octomind platform for creating, executing, and analyzing end-to-end tests without leaving your development environment. (19 tools) (node)
- ✅ @peng-shawn/mermaid-mcp-server: Converts Mermaid diagrams to PNG images using Puppeteer for high-quality headless browser rendering, supporting multiple themes and customizable backgrounds. (1 tools) (node)
- ✅ @playwright/mcp: A Model Context Protocol (MCP) server that provides browser automation capabilities using Playwright. This server enables LLMs to interact with web pages through structured accessibility snapshots, bypassing the need for screenshots or visually-tuned models. (21 tools) (node)
- ✅ @tokenizin/mcp-npx-fetch: Fetches and converts web content to Markdown using JSDOM and Turndown. (4 tools) (node)
- ✅ blowback-context: Integrates with frontend development environments to provide real-time feedback and debugging capabilities through browser automation, capturing console logs, monitoring HMR events, and enabling DOM interaction without leaving the conversation interface. (11 tools) (node)
- ✅ chrome-debug-mcp: Provides browser automation capabilities through Chrome's debugging protocol with session persistence, enabling web scraping, testing, and automation tasks with tools for screenshots, navigation, element interaction, and content retrieval. (10 tools) (node)
- ✅ exa-mcp-server: A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way. (6 tools) (node)
- ✅ fetch-mcp: Fetches web content and YouTube video transcripts, converting HTML to Markdown and extracting timestamps for reference in conversations. (2 tools) (node)
- ✅ fetcher-mcp: Fetches and extracts web content using Playwright's headless browser capabilities, delivering clean, readable content from JavaScript-heavy websites in HTML or Markdown format for research and information gathering. (2 tools) (node)
- ✅ firecrawl-mcp: Integration with FireCrawl to provide advanced web scraping capabilities for extracting structured data from complex websites. (8 tools) (node)
- ✅ gologin-mcp: Manage your GoLogin browser profiles and automation directly through AI conversations. This MCP server connects to the GoLogin API, letting you create, configure, and control browser profiles using natural language. (59 tools) (node)
- ✅ hyper-mcp-browser: Enables web browsing capabilities through Puppeteer and Chrome, allowing navigation, content extraction, and interaction with websites for scraping, analysis, and automated testing workflows. (2 tools) (node)
- ✅ hyperbrowser-mcp: Enables web browsing capabilities through tools for content extraction, link following, and browser automation with customizable parameters for scraping, data collection, and web crawling tasks. (10 tools) (node)
- ✅ mcp-cookie-server: Provides cookie management capabilities for web automation and testing workflows, enabling storage, retrieval, and manipulation of session state and authentication cookies across different web services. (6 tools) (node)
- ✅ mcp-jinaai-grounding: Integrates JinaAI's content extraction and analysis capabilities for web scraping, documentation parsing, and text analysis tasks. (1 tools) (node)
- ✅ mcp-jinaai-reader: Extracts and processes web content for efficient parsing and analysis of online information (1 tools) (node)
- ✅ mcp-node-fetch: Enables web content retrieval and processing with tools for fetching URLs, extracting HTML fragments, and checking site availability using Node.js's undici library. (3 tools) (node)
- ✅ mcp-playwright-scraper: Leverages Playwright and BeautifulSoup to enable robust web scraping and content extraction, converting complex JavaScript-heavy web pages into high-quality Markdown with browser automation capabilities. (1 tools) (python)
- ✅ mcp-rquest: Enables LLMs to make advanced HTTP requests with realistic browser emulation, bypassing anti-bot measures while supporting all HTTP methods, authentication, and automatic response handling for web scraping and API interactions. (10 tools) (python)
- ✅ mcp-server-chatgpt-app: Enables interaction with the ChatGPT macOS app through AppleScript automation, allowing tools to send prompts via keyboard input simulation without switching interfaces. (1 tools) (python)
- ✅ mcp-server-fetch: Retrieve and convert web content to markdown for analysis. (1 tools) (python)
- ✅ mcp-server-weibo: Enables scraping of Weibo user information, feeds, and search functionality with tools for user discovery, profile retrieval, and feed access (5 tools) (node)
- ✅ mcp-web-content-pick: Extracts structured content from web pages using customizable selectors for crawling, parsing, and analyzing HTML elements without leaving the assistant interface. (1 tools) (node)
- ✅ playwright-mcp: Playwright MCP enables browser automation and interaction recording by capturing DOM interactions, screenshots, and page navigation events to generate reproducible test scripts through a visual, context-driven workflow. (5 tools) (node)
- ✅ scrapling-fetch-mcp: Enables AI to access text content from websites protected by bot detection mechanisms through three protection levels (basic, stealth, max-stealth), retrieving complete pages or specific content patterns without manual copying. (2 tools) (python)
- ✅ vibe-eyes: Enables LLMs to visualize and debug browser-based games and applications by capturing canvas content, console logs, and errors, then processing visual data into compact SVG representations for seamless debugging. (1 tools) (node)
Cloud Platforms
Integrate with cloud services to manage and interact with cloud infrastructure.
- ✅ @cloudbase/cloudbase-mcp: Enables AI systems to deploy, monitor, and manage full-stack applications on Tencent CloudBase through tools for cloud environments, databases, functions, hosting services, and storage resources. (39 tools) (node)
- ✅ @digitalocean/mcp: Integrates with DigitalOcean's cloud platform API to enable management of cloud resources, deployment of applications, and monitoring of infrastructure through natural language commands. (32 tools) (node)
- ✅ @felixallistar/coolify-mcp: Integrates with Coolify's deployment platform to manage self-hosted applications, databases, and infrastructure including 110+ one-click services, 8 database types, server connectivity validation, and environment variable handling. (10 tools) (node)
- ✅ @masonator/coolify-mcp: Integrates with Coolify to enable natural language management of servers, projects, applications, and databases through the Coolify API, allowing users to perform DevOps operations without leaving their conversation interface. (5 tools) (node)
- ✅ @netlify/mcp: Integrates with Netlify's platform for complete site management including project operations, deployments with zip uploads, team administration, extension configuration, and documentation access across hosting, build, and collaboration workflows. (6 tools) (node)
- ✅ @osaas/mcp-server: EyevinnOSC's MCP server enables AI assistants to provision and manage vendor-independent cloud infrastructure for databases, storage, and media processing through an open source API. (3 tools) (node)
- ✅ @strowk/mcp-k8s: Control and monitor K8s clusters for management and debugging. (8 tools) (node)
- ✅ akave-mcp-js: Integrates with Akave's S3-compatible storage platform to manage buckets and objects, upload/download files, generate signed URLs, and handle file operations with automatic text cleaning for common formats. (13 tools) (node)
- ✅ alibabacloud-fc-mcp-server: Integrates with Alibaba Cloud Function Compute to deploy and manage serverless functions with multi-language runtime support, custom domain routing, and VPC configuration for automated cloud function lifecycle management. (12 tools) (node)
- ✅ alibabacloud-mcp-server: Provides a bridge to Alibaba Cloud services for managing ECS instances, viewing resources, monitoring metrics, and configuring VPC networks through natural language commands (26 tools) (python)
- ✅ aliyun-mcp-server: Integrates with Alibaba Cloud services to query and filter SLS logs, with future support for ECS instance management and serverless function deployment. (1 tools) (node)
- ✅ apisix-mcp: Bridge LLMs with the APISIX Admin API to manage and analyze API gateway information. (32 tools) (node)
- ✅ aws-s3-mcp: Provides direct access to Amazon S3 storage for listing buckets, browsing objects, and retrieving file contents with automatic text extraction from PDFs and other file types. (3 tools) (node)
- ✅ awslabs.cdk-mcp-server: Integration for AWS Cloud Development Kit (CDK) best practices, infrastructure as code patterns, and security compliance with CDK Nag. (7 tools) (python)
- ✅ cloudinary-mcp-server: Provides direct access to Cloudinary's Upload and Admin APIs for uploading, retrieving, searching, and managing digital media assets in your Cloudinary cloud. (5 tools) (node)
- ✅ coolify-mcp-server: Enables comprehensive Coolify infrastructure management by exposing tools for creating, deploying, and tracking servers, applications, and team resources with robust operational capabilities. (26 tools) (node)
- ✅ edgeone-pages-mcp: Enables rapid deployment of HTML content to Tencent's EdgeOne Pages service with integrated Functions and KV store support for edge hosting (2 tools) (node)
- ✅ google-cloud-mcp: Integrates with Google Cloud services to provide direct access to Logging, Spanner, and Monitoring resources within conversations through authenticated connections. (17 tools) (node)
- ✅ mcp-server-esa: Provides a bridge to Alibaba Cloud's Edge Security Acceleration service for managing edge routines, deployments, routes, and sites through authenticated API operations. (23 tools) (node)
- ✅ mcp-server-kubernetes: MCP server for managing Kubernetes clusters, enabling LLMs to interact with and control Kubernetes resources. (22 tools) (node)
- ✅ multicluster-mcp-server: Provides a bridge to Kubernetes multi-cluster environments for managing distributed resources through kubectl commands, service account connections, and seamless cross-cluster operations without switching contexts. (4 tools) (node)
Code Execution
Run code securely, perfect for coding agents and AI-driven programming tasks.
- ✅ @e2b/mcp-server: A Model Context Protocol server for running code in a secure sandbox by E2B. (1 tools) (node)
- ✅ @riza-io/riza-mcp: Provides a secure bridge between LLMs and Riza's isolated code interpreter API, enabling writing, saving, editing, and executing code safely in a sandboxed environment with persistent tool management across conversations. (6 tools) (node)
- ✅ gemini-mcp-tool: Integrates with Google's Gemini CLI to leverage massive token windows for analyzing large files and codebases, providing general queries, sandbox-mode code execution for safe testing, and structured response handling with behavioral flags for context control. (6 tools) (node)
- ✅ js-sandbox-mcp-server: Provides a secure JavaScript sandbox for executing code with configurable time and memory limits, enabling safe testing and evaluation of algorithms. (1 tools) (node)
- ✅ mcp-llm: Integrates with LlamaIndexTS to provide access to various LLM providers for code generation, documentation writing, and question answering tasks (4 tools) (node)
- ✅ mcp-python: Provides a persistent Python execution environment for interactive code development, data analysis, and rapid prototyping. (3 tools) (python)
- ✅ mcp-server-code-runner: Executes code snippets in over 30 programming languages by creating temporary files and running them with appropriate interpreters, enabling direct testing and demonstration within conversations. (1 tools) (node)
- ✅ node-code-sandbox-mcp: Provides a secure Docker-based environment for executing Node.js code with npm dependencies, shell commands, and file operations while maintaining proper isolation for testing and web development prototyping. (7 tools) (node)
- ✅ nrepl-mcp-server: Integrates with Clojure nREPL instances to enable code evaluation, namespace listing, and public var inspection for AI-assisted Clojure development. (3 tools) (node)
- ✅ python-local: Provides an interactive Python REPL environment for executing code within conversations, maintaining separate state for each session and supporting both expressions and statements. (1 tools) (python)
- ✅ sandock-mcp: A Model Context Protocol server for running code in a secure sandbox by Sandock. (6 tools) (node)
Coding Agents
AI tools that can autonomously read, write, and execute code to solve programming tasks.
- ✅ @steipete/claude-code-mcp: Provides a streamlined interface for executing complex coding tasks including file operations, Git commands, and web searches without permission interruptions by automatically bypassing constraints. (1 tools) (node)
- ✅ mcp-coco: MCP-Coco provides a pair programming tool that guides technical discussions by transforming code snippets into structured frameworks for critical inquiry about performance, security, and maintainability. (1 tools) (node)
- ✅ mcp-neovim-server: Integrates Claude Desktop with Neovim, enabling AI-enhanced coding assistance within the familiar Vim environment through direct interaction with buffers and commands. (19 tools) (node)
- ✅ mcp-server-code-assist: Enables code modification and generation tasks through file operations, search-and-replace, and version control integration for automated refactoring and codebase maintenance. (17 tools) (python)
Command Line
Run shell commands and interact with command-line tools easily.
- ✅ @devyhan/xcode-mcp: Provides Xcode-related command-line tools to enables project inspection, building, testing, archiving, code signing, and Xcode simulator management through natural language commands. (9 tools) (node)
- ✅ @kevinwatt/shell-mcp: Provides a shell command execution interface for secure and controlled access to local system operations, enabling automation tasks and system management. (20 tools) (node)
- ✅ @peakmojo/applescript-mcp: Enables AI to execute AppleScript code on macOS systems, providing access to applications and system features like Notes, Calendar, Contacts, Messages, and Finder through a lightweight server implementation. (1 tools) (node)
- ✅ @rinardnick/mcp-terminal: Provides a secure terminal server for executing whitelisted shell commands with strict resource controls and security boundaries. (1 tools) (node)
- ✅ @simonb97/server-win-cli: Control Windows command-line interfaces securely. (9 tools) (node)
- ✅ @steipete/macos-automator-mcp: Automates macOS tasks through AppleScript and JavaScript for Automation with a rich library of pre-defined scripts for application control, file operations, and system interactions. (2 tools) (node)
- ✅ @steipete/peekaboo-mcp: Enables macOS screen capture and window management with tools for taking screenshots, analyzing images, and controlling application windows (3 tools) (node)
- ✅ apple-notifier-mcp: Enables interaction with macOS notifications and system dialogs for desktop alerts, user input, and system operations. (5 tools) (node)
- ✅ iterm_mcp_server: Enables AI interaction with iTerm2 terminals on macOS through AppleScript and Node.js, allowing command execution, output capture, and terminal management without context switching. (5 tools) (node)
- ✅ iterm-mcp: Enables direct execution of shell commands in the active iTerm tab, streamlining terminal-based workflows and automation tasks. (3 tools) (node)
- ✅ macos-notification-mcp: Enables macOS system notifications, banner alerts, and text-to-speech capabilities with customizable parameters like voice selection and speech rate. (5 tools) (python)
- ✅ mcp-apple-calendars: Provides a TypeScript-based server for reading, creating, updating, and deleting macOS calendar events through a local HTTP bridge, enabling seamless scheduling and calendar management for desktop applications. (7 tools) (node)
- ✅ mcp-cli-exec: Provides powerful CLI command execution capabilities, enabling structured output for shell commands with features like timeout handling, ANSI code stripping, and error management for system administration and DevOps workflows. (2 tools) (node)
- ✅ mcp-kubernetes-server: Enables direct Kubernetes cluster management through kubectl command execution, providing a bridge for real-time resource administration within conversations. (1 tools) (python)
- ✅ mcp-server-commands: Execute system commands and scripts on the host machine. (1 tools) (node)
- ✅ mcp-server-macos-defaults: Enables interaction with macOS system preferences via the 'defaults' command for querying and modifying configurations. (4 tools) (python)
- ✅ mcp-server-siri-shortcuts: Integrates with macOS Shortcuts to dynamically expose and execute user-defined automation workflows through generated tools. (3 tools) (node)
- ✅ mcp-shell: Secure shell command execution server for AI models to interact with local systems while maintaining strict security controls. (1 tools) (node)
- ✅ mcp-shell-server: Execute whitelisted shell commands on the host system via asyncio. (1 tools) (python)
- ✅ mcp-wsl-exec: Provides secure command execution in WSL with built-in safety features like path validation, timeouts, and error handling. (2 tools) (node)
- ✅ os-info-mcp-server: Provides real-time system information about the host computer, including CPU, memory, operating system, disk, battery, and process details for monitoring resources and troubleshooting performance issues. (1 tools) (node)
- ✅ perm-shell-mcp: Enables secure execution of shell commands through desktop notifications that require explicit user approval for each operation, maintaining strong security boundaries for local system access. (2 tools) (node)
- ✅ phone-mcp: Enables remote control of Android phones through ADB commands for making calls, sending texts, taking screenshots, managing contacts, launching apps, and retrieving system information. (21 tools) (python)
- ✅ server-cmd: Cross-platform MCP server for executing command-line operations and SSH connections on Windows and Linux systems through a standardized interface. (2 tools) (node)
- ✅ shell-command-mcp: Secure shell command execution server that allows running system commands in a controlled environment through an allowlist system, returning results in YAML format. (1 tools) (node)
- ✅ super-shell-mcp: Enables secure execution of shell commands across Windows, macOS, and Linux with a three-tier whitelist security model for controlled system access. (9 tools) (node)
- ✅ wcgw: Access shell and filesystem in order to automate tasks and run code (6 tools) (python)
Communication
Connect with messaging platforms to manage chats and interact with team tools.
- ✅ @abhaybabbar/retellai-mcp-server: Integrates with RetellAI's voice services for creating and managing phone conversations, enabling call initiation, agent configuration, and voice selection for tasks like customer service, appointment scheduling, and information gathering. (24 tools) (node)
- ✅ @cristip73/mcp-server-asana: Integrates with Asana's API to enable task management, project organization, and collaboration workflows through 30+ tools for searching, creating, and visualizing projects and tasks. (41 tools) (node)
- ✅ @enescinar/twitter-mcp: Interact with X (Twitter) by posting tweets and searching for tweets through the X API. (2 tools) (node)
- ✅ @floriscornel/teams-mcp: Integrates with Microsoft Teams through Graph API to search messages, manage chats and channels, send messages, create group chats, and handle user/team operations with device code authentication for secure access. (19 tools) (node)
- ✅ @grec0/mcp-s2s-asterisk: Integrates with Asterisk phone systems to enable outbound call operations, conversation monitoring, call history retrieval, and telephony system metrics tracking for business automation workflows. (9 tools) (node)
- ✅ @greirson/mcp-todoist: Integrates with Todoist API to manage tasks, projects, sections, and comments with support for bulk operations, natural language search, and comprehensive CRUD functionality. (28 tools) (node)
- ✅ @horizondatawave/mcp: Bridges AI systems with LinkedIn's API for searching users, retrieving profiles, accessing posts, managing connections, and sending messages to support sales prospecting, recruitment, and professional networking workflows. (23 tools) (node)
- ✅ @kazuph/mcp-gmail-gas: Integrates Gmail functionality, enabling email search, message retrieval, and attachment downloads via Google Apps Script. (3 tools) (node)
- ✅ @kevinwatt/mcp-webhook: Enables sending customizable messages to external webhook endpoints, facilitating automated notifications and workflow integrations. (1 tools) (node)
- ✅ @kydycode/todoist-mcp-server-ext: Integrates with Todoist API to provide enhanced task management capabilities including task creation, updating, completion, project organization, label management, and natural language quick-add functionality with support for subtasks, priorities, due dates, and bulk operations. (30 tools) (node)
- ✅ @mbelinky/x-mcp-server: Integrates with Twitter/X API using dual OAuth authentication (1.0a and 2.0) to enable tweet posting with media attachments, tweet searching, and tweet deletion with intelligent rate limiting designed for free-tier API usage. (3 tools) (node)
- ✅ @modelcontextprotocol/server-slack: Send messages, manage channels, and access workspace history. (8 tools) (node)
- ✅ @prathamesh0901/zoom-mcp-server: Provides a bridge between Zoom API and virtual meeting management, enabling creation, updating, deletion, and fetching of meetings without navigating the Zoom interface or handling authentication flows. (4 tools) (node)
- ✅ @pubnub/mcp: Enables AI assistants to interact with PubNub's realtime communication platform for retrieving documentation, accessing SDK information, and utilizing messaging APIs without leaving their conversation context. (11 tools) (node)
- ✅ @shinzolabs/gmail-mcp: Manage your emails effortlessly with a standardized interface for drafting, sending, retrieving, and organizing messages. Streamline your email workflow with complete Gmail API coverage, including label and thread management. (64 tools) (node)
- ✅ @taazkareem/clickup-mcp-server: Integrates ClickUp task management with AI systems to enable automated task creation, updates, and retrieval for enhanced project workflow efficiency. (36 tools) (node)
- ✅ @toolsdk.ai/aws-ses-mcp: Enables direct email sending through Amazon SES with support for HTML content, CC/BCC recipients, and reply-to addressing while maintaining AWS security standards. (1 tools) (node)
- ✅ @toolsdk.ai/mcp-send-email: Integrates with the Resend API to enable sending plain text emails with scheduling options and configurable reply-to addresses through command-line or environment variable configuration. (1 tools) (node)
- ✅ @waystation/mcp: Connects productivity tools like Monday, Asana, Notion, and Slack through a secure integration hub, enabling seamless access directly from chat interfaces without switching applications. (69 tools) (node)
- ✅ discord-mcp: A Model Context Protocol (MCP) server that provides Discord integration capabilities, including full file attachment support, rate limiting, and comprehensive Discord API features. Built with the official @modelcontextprotocol/sdk for maximum compatibility with Claude Code and other MCP clients. (19 tools) (node)
- ✅ gmail-mcp: Integrates with Gmail to enable email search, retrieval, and interaction for natural language-driven email management and analysis tasks. (6 tools) (python)
- ✅ mcp-clickup: Integrates with ClickUp's API to enable task management, team collaboration, and workflow automation for AI-driven project management and reporting. (4 tools) (node)
- ✅ mcp-fleur: Integrates with the Fleur application to enable direct access to external apps like Gmail, Linear, and Slack without leaving the chat interface through platform-specific launch methods for macOS and Windows. (2 tools) (python)
- ✅ mcp-mailtrap: Enables sending transactional emails through the Mailtrap Email API. (1 tools) (node)
- ✅ mcp-server-email: Enables language models to compose and send emails with attachments through SMTP servers, supporting multiple providers and secure transmission for automated email workflows. (2 tools) (python)
- ✅ mcp-server-monday: Integrates with Monday.com to enable creating items, retrieving board groups, adding comments, listing boards, and managing sub-items for project management and team collaboration workflows. (21 tools) (python)
- ✅ mcp-wechat-moments: Enables publishing content to WeChat Moments on macOS through AppleScript automation and mouse event emulation, providing a server interface for social media management workflows. (1 tools) (python)
- ✅ ntfy-me-mcp: Enables sending push notifications through the ntfy service with customizable titles, summaries, priority levels, and tags for alerting users about completed tasks or status updates. (2 tools) (node)
- ✅ outlook-calendar-mcp: Integrates with Microsoft Outlook Calendar to enable event management, scheduling, and attendee status updates for enhanced productivity workflows. (7 tools) (node)
- ✅ outlook-meetings-scheduler: Integrates with Microsoft Outlook to create, read, update, and delete calendar events, find people, and schedule meetings with specific parameters like time, location, and attendees. (8 tools) (node)
- ✅ resend-mcp: Enables AI to compose and send emails through the Resend API with customizable sender addresses, reply-to fields, and scheduled delivery options (1 tools) (node)
- ✅ trello-mcp-server: Integrates with Trello's API to enable AI-powered project management tasks like automated workflow optimization and task creation. (15 tools) (node)
- ✅ voyp-mcp: Integrates with VOYP API to enable automated call handling, routing, and intelligent voice responses for enhanced call center operations. (7 tools) (node)
- ✅ wecom-bot-mcp-server: Integrates WeCom (WeChat Work) bot functionality for enterprise messaging, notifications, and interactive chatbots. (1 tools) (python)
- ✅ x-com-mcp-server: Integrates with X.com's API v2 through OAuth 2.0 authentication to provide complete post management capabilities including creation, deletion, search, timelines, retweets, likes, bookmarks, and engagement tracking for social media automation and content analysis workflows. (21 tools) (node)
Customer Data Platforms
Access customer profiles and data from customer data platforms.
- ✅ @clayhq/clay-mcp: Provides a bridge to Clay's personal CRM platform for searching, retrieving, and managing contact information, interactions, and professional relationships through natural language queries. (11 tools) (node)
- ✅ @hubspot/mcp-server: Integrates with HubSpot CRM to enable secure access to contact information, company records, deal data, and task management with customizable data access through Private App scopes. (21 tools) (node)
- ✅ @tsmztech/mcp-server-salesforce: Integrates with Salesforce CRM for natural language-driven data management, querying, and administration tasks. (15 tools) (node)
- ✅ attio-mcp-server: Integrates with Attio's API for reading and writing company records and notes, enabling CRM operations without direct interface navigation. (4 tools) (node)
Databases
Securely access and query databases with options for read-only permissions.
- ✅ @f4ww4z/mcp-mysql-server: Interact with MySQL databases to execute queries and manage connections. (5 tools) (node)
- ✅ @identimoji/mcp-server-emojikey: Integrates with Supabase to persist and retrieve LLM interaction styles using emojikeys, enabling consistent personalized experiences across conversations. (4 tools) (node)
- ✅ @joshuarileydev/supabase-mcp-server: Control Supabase projects and organizations. (8 tools) (node)
- ✅ @kevinwatt/mysql-mcp: Provides secure MySQL database access for LLMs, enabling read/write operations with transaction support and security features for AI-assisted data management tasks. (4 tools) (node)
- ✅ @malove86/mcp-mysql-server: Provides direct interface to MySQL databases for executing SQL queries and retrieving relational data with configurable connection parameters. (4 tools) (node)
- ✅ @niledatabase/nile-mcp-server: Integrates with Nile Database services to enable database operations through TypeScript-based server implementation supporting both stdio and HTTP communication modes for seamless database functionality in AI workflows. (11 tools) (node)
- ✅ @pinecone-database/mcp: Develop with Pinecone, the vector database built for knowledgeable AI. (9 tools) (node)
- ✅ adb-mysql-mcp-server: Connects to Alibaba Cloud's Adb MySQL databases for executing SQL queries, analyzing query plans, and retrieving database metadata with minimal configuration requirements (3 tools) (python)
- ✅ chroma-mcp: Integrates with Chroma vector database to enable collection management, document operations, and vector search capabilities for knowledge bases and context-aware conversations. (12 tools) (python)
- ✅ clickhouse-mcp-server: Integrates with ClickHouse databases to execute SQL queries and retrieve results in JSON format, enabling data analysis and exploration directly within conversation interfaces. (2 tools) (python)
- ✅ dynamo-readonly-mcp: Provides read-only access to AWS DynamoDB databases, enabling natural language interactions for listing tables, scanning data, querying with conditions, and retrieving table schemas without requiring direct database credentials. (7 tools) (node)
- ✅ greptimedb-mcp-server: Enables AI interaction with GreptimeDB time-series databases through MySQL protocol for data exploration, analysis, and SQL query execution with built-in security protections. (1 tools) (python)
- ✅ mcp-firebird: Enables secure access to Firebird SQL databases through natural language, supporting table listing, schema descriptions, query execution, and field metadata retrieval with comprehensive security features like data masking and operation restrictions. (16 tools) (node)
- ✅ mcp-neo4j-cypher: Provides natural language interfaces to Neo4j graph databases for executing Cypher queries, storing knowledge graph data, and building persistent memory structures through conversational interactions. (3 tools) (python)
- ✅ mcp-postgres-server: Provides a bridge to PostgreSQL databases for executing SQL queries, managing tables, and inspecting schemas with support for prepared statements and multiple parameter styles (6 tools) (node)
- ✅ mcp-server-sqlite: Query and analyze SQLite databases directly. (6 tools) (python)
- ✅ mcp-server-starrocks: Enables AI models to interact with StarRocks databases by providing read and write access to tables, schemas, and data through a Python-based server with configurable modes. (5 tools) (python)
- ✅ mcp-timeplus: Integrates with Timeplus to enable SQL query execution and database information retrieval for real-time analytics and data exploration. (7 tools) (python)
- ✅ mcp-turso-cloud: Provides a bridge between AI assistants and Turso SQLite databases, enabling organization-level management and database-level queries with persistent context, schema exploration, and vector similarity search capabilities. (9 tools) (node)
- ✅ mochow-mcp-server: Provides direct access to Mochow vector database capabilities for managing databases, tables, and performing vector similarity and full-text searches with filtering options. (14 tools) (python)
- ✅ mongodb-mcp-server: MongoDB Model Context Protocol Server (21 tools) (node)
- ✅ mongodb-mcp-server: MongoDB Model Context Protocol Server (21 tools) (node)
- ✅ mysql-mcp-server: Provides secure, read-only access to MySQL databases for exploring schemas and executing SELECT queries with built-in safeguards against SQL injection, query timeouts, and row limits. (4 tools) (node)
- ✅ mysql-query-mcp-server: Provides a secure, read-only bridge to MySQL databases, enabling natural language querying across multiple environments with strict validation and comprehensive error handling. (3 tools) (node)
- ✅ mysqldb-mcp-server: Enables direct SQL query execution and database connections to MySQL databases through a simple interface that returns results in JSON format. (2 tools) (python)
- ✅ nostrdb-mcp: Integrates with nostrdb to enable local Nostr data querying and analysis. (2 tools) (node)
- ✅ oracle-mcp-server: Connects to Oracle databases with intelligent caching and lazy loading to provide schema exploration, query execution with explain plans, and cross-schema operations for efficient database management without loading entire schemas upfront. (3 tools) (python)
- ✅ postgres-mcp: Helps you and your AI agents throughout the entire development process—from writing SQL to tuning performance safely. (9 tools) (python)
- ✅ ydb-mcp: Provides a bridge between AI and YDB databases, enabling natural language interactions for executing SQL queries, exploring schema information, and retrieving connection status. (5 tools) (python)
Data Platforms
Tools for integrating, transforming, and managing data pipelines.
- ✅ @apitable/aitable-mcp-server: AITable.ai Model Context Protocol Server enables AI agents to connect and work with AITable datasheets. (6 tools) (node)
- ✅ @powerdrillai/powerdrill-mcp: Provides tools to interact with Powerdrill datasets to perform data work. (9 tools) (node)
- ✅ graphlit-mcp-server: Graphlit MCP Server for AI, RAG, OpenAI, PDF parsing and preprocessing (64 tools) (node)
- ✅ json-mcp-server: Provides tools for splitting large JSON files into manageable chunks and merging multiple JSON files into a consolidated output for efficient data processing workflows. (2 tools) (node)
- ✅ mcp-google-analytics: A Model Context Protocol (MCP) server for Google Analytics integration. This server provides tools for interacting with Google Analytics, including running reports, querying accounts and properties, and accessing metadata. (4 tools) (python)
- ✅ mcp-server-axiom: Integrates with Axiom for executing APL queries and listing datasets, enabling log analysis, anomaly detection, and data-driven decision making. (3 tools) (node)
- ✅ mcp-server-opendal: Integrates with OpenDAL to provide unified access to diverse storage backends, enabling LLMs to read from and write to various storage systems for data management tasks. (3 tools) (python)
- ✅ opengov-mcp-server: Enables access to public government datasets from Socrata-powered portals through a unified tool for searching, querying, and analyzing data like budgets, crime statistics, and transportation information without requiring an API key. (1 tools) (node)
- ✅ powerplatform-mcp: Integrates with Microsoft PowerPlatform/Dataverse to enable intelligent access to entity metadata, attributes, relationships, and records with support for OData queries and context-rich prompts for data modeling and exploration. (8 tools) (node)
Developer Tools
Enhance your development workflow with tools for coding and environment management.
- ✅ @ahdev/dokploy-mcp: Integrates with Dokploy platform API for creating, updating, duplicating, and removing deployment projects, enabling teams to automate deployment workflows through AI interactions. (56 tools) (node)
- ✅ @auto-browse/unbundle-openapi-mcp: Splits and extracts portions of OpenAPI specification files into smaller, more focused files while preserving referenced components for improved documentation and maintainability. (2 tools) (node)
- ✅ @buouui/supaui-mcp: Enables React UI component generation, fetching, and management through natural language interactions on the buouui.com platform, leveraging TypeScript and developer-focused design workflows. (3 tools) (node)
- ✅ @cdugo/docs-fetcher-mcp: Integrates with multiple package registries and documentation sources to provide up-to-date library information for code assistance, dependency analysis, and learning about new libraries. (4 tools) (node)
- ✅ @chriswhiterocks/sushimcp: Delivers documentation context from various technology sources to improve code generation by fetching and serving relevant llms.txt documentation on demand. (4 tools) (node)
- ✅ @circleci/mcp-server-circleci: Enables agents to talk to CircleCI. Fetch build failure logs to fix issues. (14 tools) (node)
- ✅ @coderide/mcp: Integrates with CodeRide's task management platform to provide project retrieval, task operations, prompt extraction, and project initialization with knowledge graphs and Mermaid diagrams for development workflows. (9 tools) (node)
- ✅ @container-inc/mcp: Enables seamless deployment of containerized applications directly from code editors through a three-step workflow of GitHub authentication, repository setup, and automated Docker image publishing. (3 tools) (node)
- ✅ @currents/mcp: Provides a bridge to Currents test results platform, enabling AI to analyze failing tests, optimize test suites, and troubleshoot CI/CD pipeline issues through direct access to test execution data. (3 tools) (node)
- ✅ @growthbook/mcp: Enables AI to manage feature flags, experiments, environments, and SDK connections in GrowthBook, providing tools for searching documentation, creating targeting rules, and generating implementation code for various programming languages. (18 tools) (node)
- ✅ @heilgar/shadcn-ui-mcp-server: Provides tools for managing and installing shadcn/ui components directly through assistants, enabling efficient component discovery, documentation retrieval, and installation command generation with multiple package manager support. (6 tools) (node)
- ✅ @hyperdrive-eng/mcp-nodejs-debugger: Connects Claude Code to Node.js's Inspector Protocol for real-time debugging capabilities, enabling breakpoint setting, variable inspection, and code execution stepping without leaving the conversation interface. (13 tools) (node)
- ✅ @jpisnice/shadcn-ui-mcp-server: A mcp server to allow LLMS gain context about shadcn ui component structure,usage and installation (7 tools) (node)
- ✅ @jsonresume/mcp: Enhances JSON Resumes with GitHub project information by analyzing codebases, fetching existing resumes, and intelligently updating profiles with relevant project details using OpenAI's API. (3 tools) (node)
- ✅ @kailashg101/mcp-figma-to-code: Extracts and analyzes components from Figma design files, enabling seamless integration between Figma designs and React Native development through component hierarchy processing and metadata generation. (3 tools) (node)
- ✅ @magicuidesign/mcp: Provides structured access to Magic UI's component library for generating accurate code suggestions with proper installation instructions for implementing visually appealing UI elements in web applications. (8 tools) (node)
- ✅ @mcp-get-community/server-llm-txt: Access up-to-date API documentation efficiently. (3 tools) (node)
- ✅ @mcp-get-community/server-macos: MCP server for macOS system operations (2 tools) (node)
- ✅ @nextdrive/github-action-trigger-mcp: Enables GitHub Actions integration for triggering workflows, fetching action details, and retrieving repository releases through authenticated API interactions (4 tools) (node)
- ✅ @opentofu/opentofu-mcp-server: Enables AI systems to search for and retrieve detailed information about OpenTofu Registry components including providers, modules, resources, and documentation for infrastructure-as-code tasks. (5 tools) (node)
- ✅ @pinkpixel/npm-helper-mcp: Provides specialized tools for searching npm packages, fetching documentation, checking outdated dependencies, and safely upgrading Node.js packages with version constraint management (10 tools) (node)
- ✅ @rtuin/mcp-mermaid-validator: Validates and renders Mermaid diagrams as SVG images, providing detailed error messages for invalid syntax to enhance visualization capabilities within conversations. (1 tools) (node)
- ✅ @serverless-dna/powertools-mcp: Enables AI to search and retrieve AWS Lambda Powertools documentation across multiple runtimes through a TypeScript server with efficient local search capabilities and content caching. (2 tools) (node)
- ✅ @shopify/dev-mcp: Integrates with Shopify Dev. Supports various tools to interact with different Shopify APIs. (4 tools) (node)
- ✅ @stakpak/mcp: Integrates with Stakpak API to generate infrastructure code for projects, enabling developers to quickly create configurations through a dedicated tool that works with various IDEs. (1 tools) (node)
- ✅ @sveltejs/mcp: The official Svelte MCP server providing docs and autofixing tools for Svelte development (4 tools) (node)
- ✅ @tgomareli/macos-tools-mcp: Provides macOS system monitoring with SQLite-based historical data storage and enhanced file search with tagging support, collecting real-time CPU, memory, disk, and network metrics while offering content-based file searching with regex support and macOS file tagging operations through native utilities like Spotlight and extended attributes. (2 tools) (node)
- ✅ @toolsdk-remote/discovery-oracle-402bot: Discover live agent APIs, ranked endpoints, trust, payment telemetry, and x402 surfaces. (4 tools) (node)
- ✅ @wenbopan/things-mcp: Integrates with Things.app task management for macOS, enabling task and project creation with full metadata support, update operations including completion status, database export functionality, and summary generation through URL scheme and direct database access. (6 tools) (node)
- ✅ @yodakeisuke/mcp-micromanage: Task management system that visualizes development work as interactive flowcharts, enabling structured breakdown of tickets into minimal PRs and commits with progress tracking capabilities. (3 tools) (node)
- ✅ a11y-mcp: Perform accessibility audits on webpages using axe-core. Use the results in an agentic loop with your favorite AI assistants (Cline/Cursor/GH Copilot) and let them fix a11y issues for you. (2 tools) (node)
- ✅ bika-mcp-server: A Model Context Protocol server that provides read and write access to Bika.ai. This server enables LLMs to list spaces, list nodes, list records, create records and upload attachments in Bika.ai. (6 tools) (node)
- ✅ cursor-chat-history-mcp: Analyzes local Cursor chat history to extract development patterns, usage insights, and coding best practices with tools for searching conversations, generating analytics, and exporting data in multiple formats for personalized development assistance. (8 tools) (node)
- ✅ deepsource-mcp-server: Integrates with DeepSource's code quality platform to provide access to project metrics, issues, and analysis results for monitoring and troubleshooting code quality directly in conversations. (10 tools) (node)
- ✅ freecad-mcp: Enables AI-driven CAD modeling by providing a remote procedure call (RPC) server that allows programmatic control of FreeCAD, supporting operations like creating documents, inserting parts, editing objects, and executing Python code for generative design workflows. (10 tools) (python)
- ✅ gistpad-mcp: Transforms GitHub Gists into a personal knowledge management system with specialized handling for daily notes, reusable prompts with frontmatter support, and comprehensive gist operations including creation, updating, archiving, and commenting for version-controlled knowledge storage. (28 tools) (node)
- ✅ github-mcp: A powerful GitHub automation tool that seamlessly connects AI assistants to your GitHub repositories (2 tools) (node)
- ✅ ios-simulator-mcp: Enables Claude to control iOS simulators for testing and debugging applications by providing tools for UI interaction, element inspection, and device information retrieval through Facebook's IDB tool. (10 tools) (node)
- ✅ it-tools-mcp: Provides 50+ developer utilities including cryptographic operations, text processing, data format conversion, network calculations, and encoding functions through a containerized TypeScript server with security features and rate limiting. (119 tools) (node)
- ✅ jnews-mcp-server: Lightweight Python FastAPI server implementation for streamlined server-side interactions, using modern tooling like uv for dependency management and GitHub Actions for automated testing and deployment. (2 tools) (python)
- ✅ mcp-azure-devops: Integrates with Azure DevOps services to enable natural language interactions for querying work items, retrieving project information, and managing team resources without navigating the complex interface directly. (21 tools) (python)
- ✅ mcp-chain-of-thought: Task management system that converts natural language into organized development tasks with dependency tracking, implementation guides, and verification criteria through structured reasoning phases. (15 tools) (node)
- ✅ mcp-developer-name: Provides customizable developer information through a lightweight Node.js server that can be run via npx command or deployed as a Docker container. (1 tools) (node)
- ✅ mcp-nixos: Provides a server for accessing NixOS packages, system options, Home Manager, and nix-darwin configurations with multi-level caching and advanced search capabilities (18 tools) (python)
- ✅ mcp-package-docs: Provides efficient access to NPM/Go/Python package documentation through smart parsing and caching, enabling quick retrieval of up-to-date library information. (10 tools) (node)
- ✅ mcp-postman: Executes Postman collections to run API tests, validate responses, and generate reports for automated testing and documentation workflows. (1 tools) (node)
- ✅ mcp-server-restart: Enables automated restarts of Claude Desktop on macOS by leveraging psutil to safely terminate and relaunch the application process. (1 tools) (python)
- ✅ mcp-server-taskwarrior: Integrates with TaskWarrior to enable viewing, adding, and completing tasks, facilitating automated task management for productivity and project workflows. (3 tools) (node)
- ✅ mcp-server-tree-sitter: Provides code analysis capabilities through tree-sitter parsing, enabling structured understanding and manipulation of source code across multiple programming languages for tasks like code review, refactoring, and documentation generation. (26 tools) (python)
- ✅ mcp-svelte-docs: Integrates with Svelte documentation to enable efficient querying and retrieval of framework-specific content for development assistance. (12 tools) (node)
- ✅ metatag-genie: Enables AI to write standardized metadata to various image file formats including HEIC and PNG for automated tagging, photo organization, and copyright embedding without switching contexts. (1 tools) (node)
- ✅ project-mcp: AI-native project management with intent-based documentation search, Jira-like task IDs (PROJECT-001), backlog workflow (import → promote → archive), thought processing (brain dumps → structured tasks with intent analysis), and project file management. (40 tools, 12 prompts) (42 tools) (node)
- ✅ qasphere-mcp: Integration with QA Sphere test management system, enabling LLMs to discover, summarize, and interact with test cases directly from AI-powered IDEs. (6 tools) (node)
- ✅ sf-mcp: Exposes Salesforce CLI functionality for interacting with Salesforce orgs, enabling developers to query data, deploy code, and manage orgs through dynamically discovered commands. (5 tools) (node)
- ✅ shadow-cljs-mcp: Monitors ClojureScript builds in real-time, providing detailed status information including compilation status, warnings, errors, and file-specific details for verifying build success after code changes. (1 tools) (node)
- ✅ software-planning-tool: Guides developers through a structured, question-based approach to break down software goals into actionable implementation plans with detailed task lists, complexity scores, and code examples. (6 tools) (node)
- ✅ source-map-parser-mcp: Maps minified JavaScript stack traces back to original source code locations for efficient production error debugging. (2 tools) (node)
- ✅ terraform-mcp-server: Integrates with the Terraform Registry API to enable provider lookup, resource usage examples, module recommendations, and schema details retrieval for infrastructure-as-code development. (10 tools) (node)
- ✅ tree-hugger-js-mcp: Provides JavaScript and TypeScript code analysis through AST parsing for function extraction, scope analysis, identifier renaming, unused import removal, and code transformation with safety previews and history tracking. (12 tools) (node)
- ✅ uiflowchartcreator: Generates UI flowcharts based on input specifications, enabling visual representation of user interfaces and interactions for design communication and workflow analysis. (1 tools) (node)
- ✅ ultra-mcp: Unified server providing access to OpenAI O3, Google Gemini 2.5 Pro, and Azure OpenAI models with automatic usage tracking, cost estimation, and nine specialized development tools for code analysis, debugging, and documentation generation. (23 tools) (node)
- ✅ vscode-mcp-server: Enables direct interaction with VS Code through bidirectional communication, providing tools for file diffing, project navigation, shell command execution, and editor information retrieval for seamless coding assistance. (9 tools) (node)
- ✅ xcodebuildmcp: Enables building, running, and debugging iOS and macOS applications through Xcode with tools for project discovery, simulator management, app deployment, and UI automation testing. (83 tools) (node)
Data Science Tools
Simplify data analysis and exploration with tools for data science workflows.
- ✅ @antv/mcp-server-chart: A visualization mcp contains 25+ visual charts using @antvis. Using for chart generation and data analysis. (25 tools) (node)
- ✅ @arizeai/phoenix-mcp: Provides a unified interface to Arize Phoenix's capabilities for managing prompts, exploring datasets, and running experiments across different LLM providers (19 tools) (node)
- ✅ @gongrzhe/server-json-mcp: Provides a JSON manipulation interface using JSONPath syntax for querying, transforming, and analyzing structured data across diverse datasets. (2 tools) (node)
- ✅ code-context-provider-mcp: Analyzes project directories to extract code structure and symbols using Tree-sitter parsers, providing tools for generating directory trees and performing deep code analysis of JavaScript, TypeScript, and Python files. (1 tools) (node)
- ✅ kaggle-mcp: Integrates with Kaggle's API to enable competition participation, dataset management, kernel operations, and model submissions for data scientists and machine learning practitioners. (1 tools) (python)
- ✅ mcp-excel-server: Enables Excel file operations and data analysis with tools for statistical analysis, data filtering, pivot table creation, and visualization through charts and plots. (8 tools) (python)
- ✅ optuna-mcp: Provides automated hyperparameter optimization and analysis using Optuna framework with support for multiple samplers, multi-objective optimization, parameter importance analysis, and interactive visualizations including optimization history and Pareto fronts. (26 tools) (python)
- ✅ scmcp: Provides natural language access to single-cell RNA sequencing analysis through Scanpy, enabling bioinformatics workflows like clustering, dimensionality reduction, and cell type annotation without writing code. (51 tools) (python)
Embedded System
Access resources and shortcuts for working with embedded devices.
- ✅ @mobilenext/mobile-mcp: Enables remote control of Android and iOS devices through commands for screenshots, app management, screen interactions, and UI navigation, ideal for automated testing and demonstrations. (17 tools) (node)
- ✅ @noahlozevski/mcp-idb: Integrates with Facebook's iOS Development Bridge (idb) to enable automated iOS device management, test execution, UI interactions, and app installation through a simple npm module. (1 tools) (node)
- ✅ @taskjp/server-systemd-coredump: Provides a bridge to systemd-coredump functionality for accessing, managing, and analyzing system core dumps in Linux environments, including listing available coredumps, retrieving information, extracting dumps, and generating stack traces using GDB. (6 tools) (node)
- ✅ adb-mcp: Bridges AI with Android devices through ADB, enabling device management, shell commands, app installation, file transfers, and UI inspection without requiring direct ADB knowledge. (8 tools) (node)
- ✅ frida-mcp: Enables dynamic instrumentation of mobile and desktop applications through Frida toolkit, providing capabilities for process management, device enumeration, and script injection for application analysis and debugging workflows. (13 tools) (python)
- ✅ mcp-3d-printer-server: Integrates with multiple 3D printer management systems to enable remote control, file handling, and advanced STL manipulation for automated print job management and custom model modifications. (15 tools) (node)
- ✅ mcp-gdb: Integrates with GDB to provide debugging capabilities for C/C++ programs, enabling breakpoint setting, code stepping, memory examination, and call stack viewing without leaving the conversation interface. (16 tools) (node)
- ✅ mcp-server-ida: Enables programmatic reading and searching of IDA Pro databases via large language models, providing tools for reverse engineering and binary analysis automation. (19 tools) (python)
- ✅ mcp2serial: Bridges with physical hardware devices (e.g. Raspberry Pi) via serial communication, enabling real-world control and interaction for IoT and robotics applications. (python)
File Systems
Manage files and directories with tools for reading, writing, and organizing files.
- ✅ @aindreyway/mcp-neurolora: Extract and document code from your local filesystem, enabling automated documentation and codebase analysis. (4 tools) (node)
- ✅ @bunas/fs-mcp: Enables file system acces
…