In the fast-moving AI world, there's often a lack of standards that seamlessly connect different systems. MCP (Model Context Protocol) was introduced by Anthropic in late 2024 as an open standard to solve exactly this problem.
It enables AI models like ChatGPT or Claude to connect to external data sources and tools in a standardized way. More and more companies are adopting MCP, showing the growing industry interest in this new standard.
In this blog article, we dive into the world of MCP servers:
What they are, what you need them for, which tools work with them, and how you can set up such a server yourself.
- MCP (Model Context Protocol) is Anthropic's new standard for AI integrations - like a 'USB-C for AI applications'
- MCP servers connect AI models to external data sources (Gmail, Slack, files) and tools in a standardized way
- Supported by Claude Desktop, Cline VS Code Extension, and a growing community with 100+ available servers
1. What Are MCP Servers and What Are They Used For?
MCP stands for Model Context Protocol. It's an open standard (a protocol) that was introduced by Anthropic in late 2024.
The idea behind it:
AI models (like ChatGPT or Claude from Anthropic) should be able to connect more easily with external data sources and tools – in a standardized way.
You can actually think of MCP like a "USB-C port for AI applications".
Just as USB-C unifies how different devices are connected, MCP standardizes the connection between AI models and various data sources or services. The following graphic by Norah Sakal illustrates this:

An MCP server in this context is a kind of small helper program (server sounds like a huge system, but here it's usually a lightweight program).
This server provides an AI with special capabilities or information. It "speaks" the MCP protocol, so the AI (or rather the MCP client in the AI application) knows how to communicate with the server.
An MCP server can, for example, have access to a specific data source or provide functions that the AI is allowed to use. The AI sends requests according to the MCP standard to the server and receives responses or actions in return – all nicely according to defined rules.
MCP servers act as adapters to remote services (e.g., Slack, Gmail, Google Calendar) or local data sources (e.g., files on your computer).
The MCP client (part of the AI app) sits as a "translator" between the AI host and the MCP servers, ensuring that everyone speaks the same "language".
2. What Are MCP Servers Used For?
They come into play whenever an AI needs context or capabilities that go beyond what it knows by itself (its training data).
But maybe you want it to work with current or personal data – for example, searching your emails, reading appointments from your calendar, accessing a database, or even controlling an application.
MCP servers make exactly that possible without having to reinvent the wheel for every AI tool and data source.
Everything remains modular and secure:
The AI host only talks to the server (according to fixed rules), and the server takes care of the rest. If a new service needs to be integrated, you just need to add an appropriate MCP server instead of completely reprogramming the AI.
Here are some examples of what you can achieve with MCP servers:
- Retrieving information: There are MCP servers connected to external APIs or services. For example, a weather server could provide an AI with current weather information when the AI asks about the weather. Or a web search server could provide internet search results.
- Using files and data: Other servers allow the AI to search local files or cloud storage, e.g.: "Find the PDF with my resume on my PC." An appropriate MCP server could handle this search and deliver the content to the AI. For Google Drive, for example, there's this ready-made MCP server that can find and read files.
- Controlling apps and tools: MCP servers can even perform actions. There's an impressive example called Blender-MCP, where Claude can actually control the 3D software Blender. This shows that MCP servers not only deliver data but can also serve as bridges to programs.
- Querying databases: There are also MCP servers for database access (e.g., for SQLite or PostgreSQL). An AI could ask questions about your data, and the server translates that into a DB query and returns the result.
3. Which Tools Support MCP Servers?
MCP sounds great – but of course only matters if applications actually support it. Since MCP is still relatively new, it's mainly modern AI applications and developer tools that are implementing it.
Here are some well-known tools and platforms that already support MCP:
- Claude Desktop (Anthropic): The desktop version of Claude (an AI chat assistant from Anthropic) offers full MCP support. This means you can let Claude on your computer use local MCP servers. For example, Claude Desktop can be taught to search your files or perform other local actions. (Important: The web version of Claude at claude.ai currently does not support MCP, only the desktop app.)
- Continue (VS Code Extension): Continue is an open-source extension for Visual Studio Code that uses AI for programming. Continue was one of the first clients with full MCP integration.
- Microsoft Copilot Studio: Microsoft's Copilot Studio (part of the Azure/OpenAI/Copilot ecosystem) has also integrated MCP support, and in a beginner-friendly way: You can add ready-made MCP connectors in a graphical interface. According to Microsoft, one click on "Add an action" is enough to search for available MCP servers and add them to your AI agent.
- Cursor: Tools like debuggers, file access, etc. can also be used via MCP with the Cursor code editor.
- Custom applications – Since MCP is an open standard, any application or custom project can in principle be expanded into an "MCP client" if the protocol rules are implemented. There are SDKs in various programming languages (Python, TypeScript, Java, etc.) if you want to build your own tools.
4. Where Can You Find Pre-built MCP Servers?
Now you might be wondering:
Do I have to program such an MCP server myself?
Fortunately, no – unless you want to build something very specific. There are already plenty of pre-built MCP servers that you can use directly or easily customize. You'll find a list with hundreds of MCP servers further below (point 6).
Another resource is Anthropic's official GitHub repository for MCP servers.
There you'll find a huge collection of reference implementations and community servers. Some categories of existing MCP servers include:
- File system and data: Access to local files or databases, e.g., a filesystem server (for file operations on your computer), a Google Drive server (for Google Drive files), or SQLite/PostgreSQL servers (to query databases). With these, you can teach your AI to read files or make database queries without writing code yourself.
- Developer tools: Connections to developer services. These include, for example, a Git server (to read repository contents or find commits), GitHub/GitLab servers (which can retrieve issues or files via the API), or a Sentry server (to read error logs from Sentry). Ideal if you use AI assistants for development tasks.
- Web and APIs: Servers that search or browse the internet. There's a Brave Search server that enables web searching, or a Fetch server that retrieves and processes web pages. A Puppeteer server is also available, which can do browser automation and web scraping – so the AI could, for example, independently visit a page and extract content.
- Productivity and communication: This includes, for example, Slack servers (which give the AI access to Slack channels and messages). In the GitHub repo, you can see logos for Gmail, Calendar, etc. – there are community servers for Gmail or Google Calendar (these often appear in Awesome MCP lists).
Many of these servers have been developed by Anthropic as examples (to demonstrate what's possible), others come from the community.
Some are published as npm packages (for Node.js) or Python packages, which makes installation easy. For example, the filesystem server is provided as the npm package @modelcontextprotocol/server-filesystem.
Similarly, there's mcp-server-sqlite as a Python/Node package. This means you can download and start many servers with a single command (more on that in the next section).
The Continue community also offers a directory for MCP servers. So even if you're not a developer, you can still benefit from the developer community's work:
There might already be an MCP server for what you want to do (whether it's searching Twitter, reading emails, or anything else).
5. How Do You Connect a Tool with an MCP Server? (Examples & Setup)
Now let's get practical:
How do I get my tool to talk to an MCP server? The exact setup can vary slightly depending on the tool, but the basic idea is always:
- Make the MCP server available – Either install/start the corresponding server (if it runs locally) or have access to it.
- Configure the tool – Tell your AI tool that it should use an MCP server (often through a configuration or settings dialog).
- Test the connection and use it – Make sure everything works, then get started.
Let's look at some concrete examples to make this more tangible:
Example 1: Claude Desktop + Filesystem Server
Let's say you want to give Anthropic Claude (desktop version) the ability to access your local files (e.g., to find text in a file or save something to your hard drive). For this, there's the pre-built Filesystem MCP server.
The setup works like this:
1. First, install the Claude Desktop app (if you haven't already) and make sure Node.js is installed on your computer (the filesystem server is a Node-based program).
2. Then go to Claude Desktop settings under Developer and open the configuration file claude_desktop_config.json.
3. Add an entry there that instructs Claude to start the filesystem server at startup. Specifically, it looks something like this (simplified):
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [ "@modelcontextprotocol/server-filesystem", "Path/to/Folder1", "Path/to/Folder2" ]
}
}This entry says: Start the package server-filesystem via npx and give it two folder paths (e.g., Desktop and Downloads) that it should have access to.
4. After saving the file, restart Claude Desktop. The app will now start the filesystem MCP server in the background. If everything worked, you'll see a small hammer icon in the Claude interface (bottom right of the input field).
Click on it and it will show you the tools that the filesystem server provides (e.g., operations like "read file" or "write file").
Now you can ask Claude: "Can you show me the first lines from file XYZ?" – Claude recognizes that it needs to use the file reading tool from the server, calls it, and (after your confirmation) returns the content. Pretty cool, right?
Important: Claude always asks for permission before actually making changes, like creating or moving a file. So you stay in control.
Example 2: VS Code Continue + SQLite Server
Let's say you're working as a developer and want to give your AI in the editor access to a database so it can answer questions about it. With Continue (the VS Code extension), this is very easy via MCP. First, make sure the desired MCP server is installed.
In our case, e.g., mcp-server-sqlite – you could do this with pip install mcp-server-sqlite or npm install depending on the implementation (the server's documentation specifies this).
Then open the Continue configuration in VS Code (usually a config.json in your user folder). There, add that Continue should use an MCP server. The Continue blog shows how to integrate the SQLite server:
"experimental": {
"modelContextProtocolServer": {
"transport": {
"type": "stdio",
"command": "mcp-server-sqlite",
"args": ["--db-path", "/Users/YOURNAME/test.db"]
}
}
}This means Continue should start a process mcp-server-sqlite and pass it the path to the database test.db. Transport: stdio means the communication runs via the input/output pipelines (the classic way, similar to language servers in VS Code).
When you now use Continue in VS Code, you can type @ in the chat context, select "MCP", and Continue will offer you the resources/tools that the SQLite server provides. The AI could then, for example, automatically execute an SQL query to answer your question and deliver the result from the database.
Example 3: Copilot Studio + Server from the Marketplace
For non-programmers, this might be the easiest way. In Microsoft Copilot Studio (a kind of building kit for AI workflows), MCP has been integrated. Here you don't even need to install anything manually. You go to your agent configuration, click on "Add action", and search for the desired MCP server in the list.
Let's say you want to use an existing "Google Drive" connector – you would find it in the list, add it, and possibly go through an auth step (i.e., allow the app access to your Google Drive).
After that, the Google Drive MCP server is immediately available to your AI agent: In the interface, you'll then see actions like "Search file in Drive" or "Read from Drive", which come exactly from the MCP server. Without a single line of code, you've given your AI new superpowers.
Copilot Studio takes care of securely connecting the MCP server in the background (including all necessary cloud infrastructure, security, etc.).
What You Should Keep in Mind
Regardless of the tool, a few general points are important when connecting MCP servers:
- Access and security: An MCP server can potentially do a lot – it has access to data or is allowed to perform actions. Therefore, you should only use servers from trusted sources and only give them the permissions that are necessary.
- Check prerequisites: As mentioned, some servers require additional software. A Node.js-based MCP server requires Node to be installed, a Python-based one requires Python. Make sure these prerequisites are met, otherwise the startup will fail. The server's documentation usually indicates this. If something doesn't work, check log files or the console – you'll often see if a command wasn't found (e.g.,
node: command not found). - Connection type (transport): In the background, client (tool) and server communicate via a so-called transport – often STDIO (i.e., the client starts the server as a subprocess and talks via the input/output pipelines), sometimes also via WebSocket or HTTP. As a user, you rarely need to know this, except when you're manually setting up a server: Then you might need to set a port or ensure that the processes can find each other. The standard reference servers mostly use STDIO, which works automatically when the client starts the process.
- Using multiple servers: You can also connect more than one MCP server in parallel. If your tool allows it, you can configure multiple servers (e.g., one for files, one for web search, one for emails). The AI client treats them separately, and depending on the AI's request, the appropriate server is addressed. So it's definitely possible to build a really powerful setup where the AI can draw from many sources – all modular and extensible.
6. MCP Server List
Here you'll find a large list of available MCP servers for various use cases:
| MCP Server | Description |
|---|---|
| Ableton Live | An MCP server for controlling Ableton Live. |
| Airbnb | Provides tools for searching Airbnb and getting listing details. |
| AI Agent Marketplace Index | MCP server for searching over 5000+ AI agents and tools across various categories from the AI Agent Marketplace Index and monitoring AI agent traffic. |
| Algorand | A comprehensive MCP server for tool interactions (40+) and resource accessibility (60+) plus many useful prompts for interacting with the Algorand blockchain. |
| Airflow | An MCP server that connects to Apache Airflow via the official Python client. |
| Airtable | Read and write access to Airtable databases, with schema inspection. |
| Airtable (Alternative) | Airtable Model Context Protocol Server. |
| AlphaVantage | MCP server for the AlphaVantage stock market data API. |
| Amadeus | An MCP server for accessing, exploring, and interacting with the Amadeus Flight Offers Search API to retrieve detailed flight options, including airline, times, duration, and pricing data. |
| Anki | An MCP server for interacting with your Anki decks and cards. |
| Apple Messages | A simple MCP server for retrieving messages with SQL queries for macOS Apple Messages. |
| Apple Notes | An MCP server integration that enables read and write access to Apple Notes. |
| Apple Shortcuts | An MCP server that enables running Apple Shortcuts via the Model Context Protocol. |
| Appwrite | An MCP server for Appwrite - cloud service for backend development. |
| Arduino | Arduino Model Context Protocol Server - interacts with and manages Arduino devices: firmware upload (ArduinoOTA & USB), pin control (digital/analog/PWM), sensor readings, and board management. |
| arXiv | Provides tools for searching, retrieving, and analyzing scientific papers from arXiv. |
| ASGI Livekit | An MCP server for controlling LiveKit rooms, participants, and tracks from any MCP-connected client. |
| ASGI MCP Bridge | An ASGI application that provides SSE and WebSocket transports for MCP servers. |
| ASGI Realtime | An ASGI-based solution for providing SSE and WebSocket transport for MCP servers, enabling seamless real-time communication between MCP servers and compatible clients. |
| Astro | An MCP server for astronomical observations with tools for calculating optimal observation times, tracking celestial objects, and retrieving astronomy data. |
| Atlassian | Server for accessing Atlassian Cloud products. |
| Atlas | MCP server for reading data from AWS with natural language. |
| Augmenta | An open-source MCP hub for managing, creating, and extending your own MCP server collection. |
| AWS | Server for interacting with AWS services. |
| AWS KB Retrieval | Server for retrieving documents from AWS Bedrock Knowledge Bases. |
| AWS Secrets | MCP server for securely retrieving secrets from AWS Secrets Manager. |
| AWS Secrets Manager | An MCP server for retrieving secrets from AWS Secrets Manager. |
| Azure | MCP server for Azure cloud resource management and operations. |
| Base | A Model Context Protocol (MCP) server that enables AI assistants to interact with Basenames (ENS on Base), Ethereum addresses, names, avatars, and transaction data across the Base ecosystem. |
| BigQuery | Server for querying Google BigQuery datasets. |
| BigQuery (Alternative) | An MCP server that provides tools for interacting with BigQuery. |
| Biome | MCP server for linting with Biome. |
| Blender | A Model Context Protocol server for Blender – enables LLMs to control Blender through natural language. Create 3D models, change materials, set up scenes, and more by simply describing what you want. |
| Bluesky | MCP server for interacting with Bluesky accounts and feeds. |
| BNB Chain | A comprehensive MCP server for tool interactions (20+) and resource accessibility (20+) plus many useful prompts for interacting with BNB Smart Chain and opBNB (Layer 2). |
| Box AI | MCP server for interacting with Box cloud storage. |
| Brave Search | Server for searching the web with the Brave Search API. |
| Breathe | An MCP server for integration with BreatheHR API. Enables HR data queries and employee management via MCP-compatible AI assistants. |
| Browserbase | Server for integrating Stagehand with MCP for browser automation. |
| Bruin | MCP server for interacting with Bruin Cloud API. |
| CalDAV | An MCP server that enables AI assistants to access CalDAV calendars, including Google Calendar, Nextcloud, and other CalDAV-compatible services. |
| Chainlit | MCP server for integration with Chainlit applications. |
| ChatSum | An MCP server that allows ChatSum users to integrate Claude Desktop into their existing ChatSum setup. |
| Chrome DevTools | An MCP server that enables AI assistants to interact with web pages via the Chrome DevTools Protocol. |
| Civilization | An MCP server for simulating historical civilizations with agent swarms. |
| Clearbit | MCP server for enriching person and company data via Clearbit API. |
| Click | Server for executing shell commands via an MCP client. |
| ClickUp | MCP server for integration with ClickUp task management. |
| Cloudflare | MCP server for Cloudflare API interactions. |
| Cloudinary | MCP server for Cloudinary for media management, optimization, and transformation integration. |
| Code Reviewer | An MCP server that provides comprehensive code review functionality. |
| Common Mark | MCP server for converting Markdown to HTML with CommonMark standard. |
| Conda | An MCP server for managing Conda/Mamba environments via the Model Context Protocol. |
| Confluence | MCP server for interacting with Atlassian Confluence API. |
| Contentful | MCP server for integration with Contentful CMS API. |
| Cross Reference | A simple tool for automatically creating cross-references in your documents. |
| Ctags | An MCP server that navigates files in a directory and uses ctags/uctags to find functions, classes, definitions, and references in codebases. |
| Dagger | An MCP server for Dagger that enables access to Dagger modules, functions, and pipelines. |
| Dandi | An MCP server for interacting with the DANDI (Distributed Archives for Neurophysiology Data Integration) archive. |
| Dashscope | An MCP server for integration with Alibaba Cloud DashScope API services. |
| Data Analysis | An MCP server for Python and R-based data analysis. |
| Databricks | MCP server for Databricks Unity Catalog integration. |
| DaVinci Resolve | MCP server for controlling DaVinci Resolve. |
| DeepSeek | MCP server for accessing DeepSeek AI models. |
| devdocs.io Search | MCP server for searching and retrieving programming documentation. |
| DH Partner | An MCP server that provides real-time data from DH Partner, Australia's award-winning new home comparison platform. |
| DHIS2 | MCP server for interacting with DHIS2 (District Health Information System 2). |
| Discord | Enables interaction with Discord for sending messages to channels. |
| Discord (Alternative 1) | An MCP server for integration with Discord API. |
| Discord (Alternative 2) | An MCP server for integration with Discord bots. |
| Docker | Server for interacting with Docker containers, images, and registries. |
| Drupal | MCP server for interacting with Drupal CMS. |
| DuckDB | MCP server for DuckDB database operations. |
| E2B | Server for running code in secure E2B sandboxes with various runtime environments. |
| Elastic MCP Server | Enables natural language interactions with Elasticsearch. |
| Elasticsearch | An MCP server for searching and querying Elasticsearch. |
| Elevenlabs | Server for integration with Elevenlabs Text-to-Speech API. |
| Eliza | A plugin for running MCP servers as Eliza plugins. |
| Elysia | Server implementation of the Model Context Protocol with Elysia Server for Bun. |
| Entra | MCP server for managing Microsoft Entra ID (formerly Azure AD). |
| Ethical Decision Maker | A server that provides ethical decision-making frameworks. |
| Ethereum | MCP server for interacting with the Ethereum blockchain with tools for querying account balances, retrieving transaction details, and block information. |
| Everything | Server for ultra-fast file searching on Windows with Everything by voidtools. |
| Exa | Server for searching the web with Exa API. |
| FastMCP | A fast, type-safe Model Context Protocol (MCP) Python SDK. |
| Fetch | Server for fetching and converting web pages to Markdown. |
| Figma | MCP server for interacting with Figma designs via the Figma API. |
| File Conversion | An MCP server for file conversion between different formats. |
| File Summarizer | Server for browsing, summarizing, and searching file contents. |
| File System | Server for secure file operations with configurable access to specific directories. |
| Firebase | An MCP server for integration with Firebase services. |
| Flutter Tools | A Flutter-specific MCP server implementation that provides development tools, project analysis, and helper functions for Flutter developers. |
| FTP | MCP server for secure FTP/FTPS file operations - upload, download, list, directory management, and more. |
| Functional Token Context | An MCP server that provides token context for functional programming. |
| Gemini | MCP server for converting Google AI Studio projects to MCP servers. |
| Genesis | An MCP server for querying the Genesis Worlds graph database. |
| GeoServer | An MCP server for interacting with the GeoServer REST API. |
| Git | Server for Git repository management with operations like status, diff, commit, and more. |
| GitHub | Server for interacting with GitHub repositories, issues, pull requests, and more. |
| GitLab | Server for interacting with GitLab repositories, issues, merge requests, and more. |
| Gmail | Server for interacting with Gmail. |
| GNU Plot | Server for creating plots with Gnuplot. |
| Google Calendar | MCP server for reading and managing Google Calendar events. |
| Google Calendar (Alternative) | Server for interacting with Google Calendar. |
| Google Cloud Storage | Server for Google Cloud Storage file operations - upload, download, list, and manage blobs in GCS bucket. |
| Google Drive | Server for searching, reading, and downloading files from Google Drive. |
| Google Maps | Server for place search, distance calculation, and route finding with Google Maps. |
| Google Sheets | Server for reading from Google Sheets spreadsheets. |
| Google Sheets (Alternative) | Reads Google Sheets data with your Gmail address. |
| Google Workspace | Server for interacting with Google Workspace services (Docs, Sheets, Slides, Drive). |
| GraphQL | MCP server for executing GraphQL queries and introspection. |
| Graphviz | MCP server for generating Graphviz diagrams with various layout engines. |
| Habitica | Retrieve and manage habits, dailies, tasks, and rewards on Habitica. |
| HackerOne | MCP server for interacting with HackerOne API v1. |
| HipChat | Allows you to use the HipChat API to search and analyze historical chat data. |
| Home Assistant | Server for controlling Home Assistant devices and accessing entity data. |
| Home Assistant (Alternative) | An MCP server for Home Assistant. |
| Homebrew | An MCP server that provides a collection of macOS administration and information tools for MCP-compatible apps (like Claude), including Homebrew package management, system hardware information, power system details, running applications, VPN management, Wi-Fi network information, volume control, clipboard operations, and AI command execution. |
| HTTP Client | Server for executing HTTP requests with support for all standard HTTP methods. |
| HubSpot | MCP server for CRM interactions with HubSpot. |
| iMessage | Server for reading and searching iMessage/SMS messages on macOS. |
| Inline | A system for creating inline instructions with tests. |
| Instructor | An MCP server that provides structured data extraction with Instructor. |
| IoT Inspector | An MCP server for scanning and inventorying IoT devices in your network. |
| IP2Location | A server for providing geolocation and geographic data for IP addresses. |
| Jaguar | This MCP server, built with FastMCP, enables LLMs to access Jaguar vector databases for semantic search and RAG applications. |
| Jenkins | MCP server for interacting with Jenkins CI/CD pipelines. |
| Jira | Server for searching and managing Jira issues. |
| Joseplanner | An MCP server for the Joseplanner.com API for task management. |
| Jutsu | Server for managing Jutsu authentication tokens and person records. |
| K8s | An MCP server for reading Kubernetes resources via the Kubernetes API. Supports multiple resource types, namespaces, and label selectors. |
| Kafka | MCP server for Apache Kafka management, enabling operations like listing brokers, managing topics, producing/consuming messages, and more. |
| Kajiwoto | An MCP server for interacting with AI via Kaji's Hub tools. |
| Kali | MCP server for security operations with Kali Linux tools. |
| Kart API | MCP server for interacting with the Kart API from SOM Toolbox. |
| Keen | Server for viewing resources in the current project, browsing documentation, and more. |
| LaTeX Compiler | An MCP server for compiling LaTeX to PDF and managing LaTeX projects. |
| Letterboxd | MCP server for browsing Letterboxd movie reviews. |
| Linear | Server for interacting with Linear project management system. |
| LLaMA Stack | Platform for building generative AI applications with LLaMA models. |
| Local Agentic System | An MCP server with tools for managing files, browsing the web, creating and running Python scripts, vision capabilities, and much more. |
| LXD | An MCP server for managing LXD containers and virtual machines. |
| Make | Run 'make' with natural language directly from Claude Chat. |
| MariaDB | Server for interacting with MariaDB databases. |
| Marked | Server for compiling Markdown to HTML. |
| Mastodon | MCP server for interacting with Mastodon social network. |
| Mathjs | An MCP server that provides mathematical calculations through the evaluable function of math.js. |
| MCP Hub | Claude Desktop MCP server manager - discover, install, and manage. |
| MCP Installer | Tool for easily installing MCP servers. |
| MCP Obsidian | Server for interacting with Obsidian vaults - create, read, search notes. |
| MCP Ragdoll | Demo MCP server for managing player profiles and interactions in a text adventure game. |
| MCP React | An MCP server that can render secure React components. |
| MCP Server Maker | A tool for automating the creation and deployment of MCP servers. |
| Memory | Server with long-term memory and storage management tools. |
| Memory (Knowledge Graph) | A graph-based persistent memory service for AI assistants. |
| Midnight Commander | MCP server for Midnight Commander (mc) file manager. |
| MindsDB | Server for interacting with MindsDB ML databases. |
| Mintbase | MCP server for interacting with Near Protocol blockchain using Mintbase SDK. |
| Mintlify | An MCP server for indexing and searching Mintlify documentation. |
| MongoDB | Server for interacting with MongoDB databases. |
| Monorepo | A lightweight MCP server monorepo that combines various multimodal conversion tools. |
| MSSQL | An MCP server for Microsoft SQL Server database interactions. |
| MSSQL (Alternative) | Server for interacting with Microsoft SQL Server databases. |
| MySQL | Server for interacting with MySQL databases. |
| MySQL (Alternative) | Server for interacting with MySQL databases. |
| News Tools | MCP server for access to news APIs (Currents, Newsdata, Tavily). |
| NextMCP | A super simple tool for creating and running MCP servers. |
| Notes | Server for creating, reading, updating, and deleting simple notes. |
| Notion | An MCP server for Notion. |
| Notion (Alternative) | An MCP server implementation for the Notion API. |
| npm | MCP server that allows LLMs to run npm installed commands. |
| Oclif | A generic MCP server compatible with any oclif-based CLI. |
| OneNote | An MCP server for Microsoft OneNote integration. |
| OpenAPI | Server for automatically deriving tools from OpenAPI specifications. |
| OpenAI | Server for accessing OpenAI API functions (text generation, embeddings, speech recognition). |
| OpenChat | An MCP server for interacting with the OpenChat AI ChatBot. |
| OpenGraph | An MCP server for retrieving OpenGraph metadata from URLs. |
| OpenRouter | Server for accessing LLMs via OpenRouter with Model Context Protocol. |
| Opportunity | An MCP server for retrieving and analyzing project funding opportunities from the ETHToronto Bento API. |
| Outlook 365 | MCP server for Microsoft Outlook 365 integration. |
| PayPal | MCP server for integration with PayPal API. |
| Server for reading and analyzing PDF files. | |
| Perplexity | An MCP server for searching the web with Perplexity. |
| pgvector | MCP server for interacting with pgvector extension in PostgreSQL. |
| Pinecone | MCP server for managing Pinecone vector databases. |
| Playwright | Server for browser automation with Playwright. |
| Plotly | Server for creating interactive charts with Plotly. |
| pmg-search | Performs searches using Python Code Search, a PMG (Roslyn's Pattern Matching Grammar for Python) query engine. |
| Podcasts | Server for searching and managing podcast collections. |
| Postgres | Server for querying PostgreSQL databases with read-only access. |
| PotterDB | An MCP server for getting information from the Harry Potter universe via the PotterDB API. |
| PowerBI | MCP server for Microsoft Power BI integration. |
| Private GPT | MCP server for integration with Private GPT for confidential AI interactions. |
| Product Hunt | An MCP server implementation for Product Hunt API. |
| Prometheus | An MCP server for interacting with Prometheus metrics and PromQL queries. |
| PromQL | Server for executing PromQL queries against Prometheus databases. |
| Puppeteer | Server for browser automation with screenshots, PDF generation, and more. |
| PyFlight | An MCP server for Python flight data analysis. |
| Python Runner | An MCP server that enables LLMs to run Python code in isolated environments with pip support, automatic error correction, and comprehensive system tools for file operations, network requests, and data analysis. |
| Qdrant | Server for managing Qdrant vector databases. |
| R Lang | Server for running R code. |
| Ragie | MCP server for interacting with the Ragie API, a RAG-as-a-Service solution. |
| Rails | Server for code generation and Rails application development. |
| RAG Web Browser | Designed to collect content from the internet for RAG systems. It can extract text from specific URLs, but also has the ability to search Google. |
| Readwise | MCP server for accessing the Readwise Reader API. |
| Redis | An MCP server for managing Redis key-value databases. |
| Redis (Alternative) | Server for interacting with Redis databases. |
| Refact | Server for interacting with Refact AI code assistant. |
| Reflect | An MCP server for structured self-reflection and thought organization. |
| Rememberizer | MCP server for storing and retrieving personal context. |
| Resend | Server for sending emails via the Resend API. |
| Roam Research | Server for interacting with your Roam Research graph database. |
| Roboflow | MCP server for interacting with Roboflow Vision AI API. |
| Roblox | Server for managing Roblox resources and applications. |
| RPA Executor | MCP server for executing RPA automation tasks. |
| RSS | Server for fetching and analyzing RSS feeds. |
| Rust | An MCP server that enables LLMs to safely execute Rust code with Cargo. Provides file, network, and system command capabilities for comprehensive Rust development and scripting. |
| S3 | An MCP server for managing S3 resources. |
| SageMath | An MCP server for running mathematical calculations with SageMath. |
| Salesforce | MCP server for Salesforce CRM integration. |
| Samsa | A semantics-aware MCP server for text analysis and processing. |
| SAP HANA | An MCP server for SAP HANA database integration. |
| ScraperAPI | MCP server for using ScraperAPI for web scraping. |
| Seam | MCP server for interacting with Seam API for smart building devices. |
| Search1API | Server for web search with Search1API. |
| SearXNG | Server for web search with SearXNG metasearch engine. |
| SEC EDGAR | Server for retrieving SEC EDGAR filings and financial data. |
| Selenium | Server for browser automation with Selenium. |
| Sentry | Server for retrieving error reporting from Sentry. |
| Sequential Thinking | Server for implementing structured, step-by-step thinking processes to break down complex problems. |
| Serper | MCP server for web search via the Serper.dev Google Search API. |
| ShareGPT | MCP server for creating ShareGPT links from any files. |
| Shell | A secure MCP server for shell command execution with configurable directory control and security features. |
| Shopify | MCP server for Shopify Admin and Storefront API interactions. |
| SimpleNote | An MCP server for managing and searching Simplenote notes. |
| Slack | Server for Slack workspace interactions including channels, messages, and users. |
| Snowflake | An MCP server for interacting with Snowflake database. |
| SpaceX | An MCP server for getting information about SpaceX missions, rockets, satellites. |
| Spotify | MCP server for Spotify Web API integration. |
| SQLAlchemy | An MCP server for using SQLAlchemy to interact with databases. |
| SQLFluff | An MCP server that enables LLMs to format and lint SQL code with SQLFluff. Supports over 20 SQL dialects including PostgreSQL, MySQL, BigQuery, and Snowflake with configurable rulesets. |
| SQLite | Server for read-only access to SQLite databases for data analysis. |
| SQLite Web Wrangler | An MCP server that transforms web data into SQLite databases for easy querying and analysis. Collects structured website content and enables natural language data exploration via SQL. |
| Strapi | MCP server for interacting with Strapi CMS API. |
| Strava | MCP server that provides access to athlete, activity, and fitness device data from Strava. |
| Stripe | Server for integration with Stripe payment platform for transactions and customer management. |
| Suno AI | An MCP server for the Suno.ai AI music generation platform. |
| Supabase | MCP server for managing Supabase projects and databases. |
| Swagger | An MCP server that converts any Swagger/OpenAPI-based API into MCP tools. |
| Swarm | MCP server for managing Docker Swarm clusters. |
| Tailscale | An MCP server for interacting with the Tailscale API. |
| Tavily | Server for web search with the Tavily research API. |
| Telegram | An MCP server for interacting with the Telegram Bot API, capable of sending messages, managing media, and performing bot operations. |
| Tello Drone | An MCP server for controlling the DJI Tello drone via natural language. |
| Terraform | An MCP server for Terraform infrastructure management. |
| Time | Server for getting the current time in various time zones and formats. |
| Timescale | MCP server for querying TimescaleDB hypertables for time series data. |
| TinyURL | Server for URL shortening and management with the TinyURL service. |
| Todoist | Server for managing Todoist tasks and projects. |
| Together AI | MCP server for accessing Together AI models. |
| Transformers | Server for using Hugging Face Transformers for text generation and analysis. |
| Trello | An MCP server for Trello API integration. |
| Tripadvisor | MCP server for Tripadvisor location details and reviews. |
| Tumblr | An MCP server for Tumblr API integration. |
| Turbo | An MCP server that allows Claude to execute shell commands, enabling autonomous coding, debugging, and general computer use for advanced users. |
| Twilio | MCP server for sending SMS and phone calls via Twilio. |
| Typeform | An MCP server for managing Typeform surveys and responses. |
| UFO | An MCP server that provides data about UFOs and UAP sightings from the NUFORC database. |
| Universitas AI SDK | An MCP server for the Universitas AI SDK. |
| Unsplash | MCP server for searching and retrieving images from Unsplash. |
| Val | An MCP server for interacting with Val Town API. |
| Valgrind | An MCP server that enables LLMs to use Valgrind for detecting memory leaks, buffer overflows, use of uninitialized memory, and other critical memory issues in C/C++ programs. |
| VALL-E | An MCP server for VALL-E, Microsoft's text-to-speech model. |
| Vega-Lite | Server for creating interactive visualizations with Vega-Lite JSON specifications. |
| Vercel AI SDK | Server for generating and executing code with the Vercel AI SDK. |
| Vercel V0 | Server for generating React components with v0.dev. |
| VirtualBox | MCP server for managing VirtualBox virtual machines. |
| Vision | An MCP server for computer vision tasks. |
| Visualize | An MCP server for generating diagrams and visualizations via quickchart.io. |
| Vivaldi | An MCP server for controlling the Vivaldi browser. |
| W3 | An MCP server that searches the web3 ecosystem. |
| Wave Apps | An MCP server for generating interactive Wave applications from natural language. |
| An MCP server for WhatsApp Business API integration. | |
| Windmill | MCP server for interacting with Windmill API for workflow automation. |
| Windows | MCP server for Windows system operations and PowerShell commands. |
| Wolfram | Server for Wolfram Alpha and Wolfram Language calculations. |
| WordPress | An MCP server that allows Anthropic's Claude to interact with WordPress via the REST API and offers extensive content management capabilities. |
| X (Twitter) | Server for reading posts and author data from X (formerly Twitter). |
| X (Twitter) (Alternative) | An MCP server for interacting with X (Twitter) API. |
| XiaoHongShu | An MCP server for searching content on XiaoHongShu (Little Red Book). |
| XState | Server for creating and managing XState state machines. |
| Yahoo Finance | Server for retrieving financial data from Yahoo Finance. |
| Yjs | An MCP server that provides tools for collaborative editing with Yjs. |
| Yolo Coder | An MCP server that provides autonomous code generation and refactoring capabilities. |
| YouTube | Server for retrieving YouTube video transcripts. |
| YouTube (Alternative) | MCP server for retrieving YouTube transcripts. |
| Zapier | MCP server for workflow automation with Zapier. |
| Zendesk | MCP server for Zendesk customer support integration. |
| Zerodha Kite | An MCP server for the Zerodha Kite Connect trading platform. |
| Zeuhl | An MCP server that provides Zeuhl research capabilities. |
| Zoom | MCP server for managing Zoom meetings and webinars. |
| Zotero | Server for accessing your Zotero reference management. |






