Discover Awesome MCP Servers
Extend your agent with 57,384 capabilities via MCP servers.
- All57,384
- Developer Tools3,867
- Search1,714
- Research & Data1,557
- AI Integration Systems229
- Cloud Platforms219
- Data & App Analysis181
- Database Interaction177
- Remote Shell Execution165
- Browser Automation147
- Databases145
- Communication137
- AI Content Generation127
- OS Automation120
- Programming Docs Access109
- Content Fetching108
- Note Taking97
- File Systems96
- Version Control93
- Finance91
- Knowledge & Memory90
- Monitoring79
- Security71
- Image & Video Processing69
- Digital Note Management66
- AI Memory Systems62
- Advanced AI Reasoning59
- Git Management Tools58
- Cloud Storage51
- Entertainment & Media43
- Virtualization42
- Location Services35
- Web Automation & Stealth32
- Media Content Processing32
- Calendar Management26
- Ecommerce & Retail18
- Speech Processing18
- Customer Data Platforms16
- Travel & Transportation14
- Education & Learning Tools13
- Home Automation & IoT13
- Web Search Integration12
- Health & Wellness10
- Customer Support10
- Marketing9
- Games & Gamification8
- Google Cloud Integrations7
- Art & Culture4
- Language Translation3
- Legal & Compliance2
Multi-MCP
A multi-model AI orchestration MCP server for automated code review and LLM-powered analysis, integrating with Claude Code and OpenCode to orchestrate multiple AI models for code quality checks, security analysis, and multi-agent consensus.
arc-browser-control
MCP server to control Arc Browser on macOS via AppleScript, enabling tab, window, space, and page operations along with frontend/backend development tools like network monitoring, console capture, and API testing.
DemandSphere MCP Server
Connects AI assistants to the DemandSphere search intelligence platform, enabling SERP analytics and GenAI visibility tracking through 20 tools across five domains.
claude-config-mcp
Manages Claude Code configuration and provides cross-session intelligent memory via the Luoshu system, enabling Claude to remember decisions and project context across conversations.
Filesystem MCP Server
A Model Context Protocol server that provides AI agents with secure access to local filesystem operations, enabling reading, writing, and managing files through a standardized interface.
Uniswap MCP Server
Exposes Uniswap V2 and V3 on-chain data and swap execution as MCP tools, resources, and prompts, enabling AI agents to query prices, inspect pools, get quotes, and execute trades.
Expert MCP
Enables AI models to consult a configured advanced model (e.g., GPT-5.5, Claude Opus 4.7) via a streamable HTTP MCP server for deep analysis and expert advice on complex problems.
Streamfog MCP
AI-driven AR lens orchestrator for live OBS streams that enables control of Streamfog face filters, AR effects, and Vtuber avatars through MCP tools via the local Streamer.bot WebSocket bridge.
Gmail MCP Server
A Node.js server that connects MCP to Gmail, enabling LLMs to send, read, and manage emails securely using the Gmail API.
Xafari MCP
An MCP server and crawler for Xafari documentation that enables AI agents to search, retrieve pages, and extract code examples from a local index. It provides structured documentation access through stdio or HTTP interfaces for seamless IDE integration.
MCP-Todoist Integration
Here are a few options for an MCP (presumably referring to a **Minimal, Complete, and Verifiable Prototype**) server for Todoist integration for natural language task management, along with considerations for each: **Option 1: Simple Flask/FastAPI Server with Todoist API** * **Description:** A lightweight Python server using Flask or FastAPI. It receives natural language input, uses a basic NLP library (like spaCy or NLTK) to extract keywords, and then uses the Todoist API to create tasks. * **Pros:** * **Simple to implement:** Flask/FastAPI are easy to learn and use. * **Direct Todoist integration:** Uses the official Todoist API. * **Good for a basic prototype:** Focuses on core functionality. * **Cons:** * **Limited NLP capabilities:** Basic keyword extraction won't handle complex sentences or context well. * **Requires API key management:** You'll need to handle Todoist API keys securely. * **Scalability:** Not designed for high traffic. * **Example Workflow:** 1. User sends: "Remind me to buy milk tomorrow at 6 PM" 2. Server: * Receives the text. * Uses spaCy to identify "buy milk" as the task, "tomorrow" as the date, and "6 PM" as the time. * Uses the Todoist API to create a task with the content "buy milk" and a due date/time of tomorrow at 6 PM. * **Tech Stack:** * Python * Flask or FastAPI * spaCy or NLTK (for NLP) * `todoist-api-python` (Python Todoist API library) * **MCP Focus:** Demonstrates the basic flow of receiving text, extracting information, and creating a Todoist task. **Option 2: Serverless Function (AWS Lambda, Google Cloud Functions, Azure Functions) with Todoist API** * **Description:** A serverless function that triggers on an HTTP request. It performs the same NLP and Todoist API integration as Option 1, but without managing a server. * **Pros:** * **Scalable:** Serverless functions scale automatically. * **Cost-effective:** You only pay for the function when it's used. * **Easy deployment:** Relatively easy to deploy. * **Cons:** * **Cold starts:** Serverless functions can have a delay when they're first invoked. * **Limited execution time:** Serverless functions have time limits. * **Debugging:** Debugging can be more challenging than with a traditional server. * **Example Workflow:** Same as Option 1. * **Tech Stack:** * Python (or Node.js, Go, etc.) * AWS Lambda, Google Cloud Functions, or Azure Functions * spaCy or NLTK (for NLP) * `todoist-api-python` (or equivalent for other languages) * **MCP Focus:** Demonstrates a scalable and cost-effective way to integrate with Todoist. **Option 3: Using a Pre-built NLP Service (Dialogflow, LUIS, Rasa) with a Webhook to Todoist** * **Description:** Leverages a pre-built NLP service to handle the natural language understanding. The NLP service is configured to recognize task-related intents and entities (e.g., task description, due date, priority). When an intent is matched, the NLP service sends a webhook to your server (or serverless function), which then uses the Todoist API to create the task. * **Pros:** * **Improved NLP:** Pre-built NLP services offer more sophisticated natural language understanding. * **Easier intent and entity management:** These services provide tools for defining and managing intents and entities. * **Reduced coding effort:** You don't need to write as much NLP code. * **Cons:** * **Dependency on a third-party service:** You're reliant on the NLP service's availability and pricing. * **Learning curve:** You need to learn how to use the NLP service. * **Cost:** Some NLP services can be expensive for high usage. * **Example Workflow:** 1. User sends: "Remind me to buy milk tomorrow at 6 PM" 2. Dialogflow (or LUIS, Rasa): * Recognizes the intent "create_task". * Extracts the entities: `task_description` = "buy milk", `due_date` = "tomorrow", `due_time` = "6 PM". * Sends a webhook to your server with the intent and entities. 3. Server: * Receives the webhook. * Uses the Todoist API to create a task with the extracted information. * **Tech Stack:** * Python (or Node.js, Go, etc.) * Flask or FastAPI (for the webhook endpoint) * Dialogflow, LUIS, or Rasa (for NLP) * `todoist-api-python` (or equivalent for other languages) * **MCP Focus:** Demonstrates the use of a pre-built NLP service for more accurate and robust natural language understanding. **Recommendation for an MCP:** Start with **Option 1 (Simple Flask/FastAPI Server)**. It's the easiest to implement and will allow you to quickly demonstrate the core functionality of integrating natural language input with Todoist. Once you have a working prototype, you can then explore Option 3 (using a pre-built NLP service) to improve the accuracy and robustness of your NLP. Option 2 (Serverless) is a good choice for deployment once you have a working prototype. **Indonesian Translation of the Recommendation:** **Rekomendasi untuk MCP (Minimal, Complete, and Verifiable Prototype):** Mulailah dengan **Opsi 1 (Server Flask/FastAPI Sederhana)**. Ini adalah yang paling mudah diimplementasikan dan akan memungkinkan Anda untuk dengan cepat mendemonstrasikan fungsionalitas inti dari mengintegrasikan input bahasa alami dengan Todoist. Setelah Anda memiliki prototipe yang berfungsi, Anda kemudian dapat menjelajahi Opsi 3 (menggunakan layanan NLP yang sudah jadi) untuk meningkatkan akurasi dan ketahanan NLP Anda. Opsi 2 (Serverless) adalah pilihan yang baik untuk penyebaran setelah Anda memiliki prototipe yang berfungsi.
SyncroMSP MCP Server
Enables AI assistants to fully access and manage SyncroMSP resources including tickets, customers, assets, invoices, and over 30 resource types through 180+ API endpoints.
mcp-postgres
Read-only PostgreSQL MCP server that enables running SELECT queries, listing tables and schemas, and describing columns, with built-in protection against writes and malicious SQL attacks.
MCP JSON Sanitizer
Enables repair of malformed JSON strings into valid JSON for agent workflows by fixing common LLM formatting issues. Supports cleanup of code fences, smart quotes, unquoted keys, trailing commas, and missing brackets to ensure reliable data parsing.
Guía de Instalación de Supabase MCP Server
Tentu, berikut adalah terjemahan dari "Guía detallada de instalación para Supabase MCP Server" ke dalam bahasa Indonesia: **Panduan Instalasi Lengkap untuk Supabase MCP Server** Atau, bisa juga: **Panduan Instalasi Mendetail untuk Server Supabase MCP** Kedua terjemahan tersebut menyampaikan arti yang sama. Pilihan mana yang lebih baik tergantung pada preferensi gaya Anda.
Google Contacts MCP Server
Enables AI assistants to access and search Google Contacts through per-user OAuth authentication on serverless AWS Lambda. Provides read-only access to personal contacts with zero data storage and real-time API queries.
OCI MCP Server
Enables interaction with Oracle Cloud Infrastructure services through a unified interface. Supports comprehensive OCI resource management including compute instances, storage, networking, databases, and monitoring through natural language commands in VS Code.
tigl-mcp
Provides MCP tools for CPACS-oriented TiGL workflows, enabling lifecycle management, inspection, export, and parameter manipulation of aircraft geometry models without native geometry runtimes.
nous
Provides a persistent project memory for AI assistants via MCP tools, enabling querying and teaching of concepts, decisions, and patterns stored in an SQLite database.
opendss-mcp-server
Connects Claude AI with EPRI's OpenDSS power system simulator, enabling conversational power system analysis for distribution planning.
database
Database MCP server for MySQL, MariaDB, PostgreSQL & SQLite
Web3 Research MCP
Penelitian Mendalam untuk kripto - gratis & sepenuhnya lokal
Config MCP Server
Enables AI assistants to search documentation, read and update configuration files, and discover settings across your development workspace. Supports JSON, YAML, TOML, and Markdown files with seamless integration for GitHub Copilot and other MCP clients.
Codebase MCP Server
A Model Context Protocol server that analyzes application codebases with real-time file watching, providing AI assistants like Claude with deep insights into project structure, code patterns, and architecture.
VeriSIFT
Read-only MCP server for autonomous, spoliation-proof disk-image triage with self-correcting verification loop.
MCP SQL Server Data Warehouse Connector
Enables AI assistants to interact with SQL Server Data Warehouses using natural language for automatic schema discovery and report generation. It ensures security by restricting operations to read-only SELECT queries through both code validation and database permissions.
Chronary
Calendar API purpose-built for AI agents. Exposes tools to manage agents, calendars, and events, find meeting times, run scheduling proposals, set availability rules, manage webhooks, and subscribe to iCal feeds.
MCP-Weather
Enables retrieval of weather information for major cities across Japan using the Japan Meteorological Agency API. Supports weather overviews, precipitation probability, and wind speed data with both local and remote OAuth 2.0 authenticated deployment options.
Market Fiyatı MCP Server
Enables searching and comparing grocery prices from Turkish markets via marketfiyati.org.tr.
IBM watsonx.data MCP Server
Enables AI assistants to interact seamlessly with IBM watsonx.data lakehouses using natural language for operations like querying, catalog browsing, engine management, and data ingestion.