Discover Awesome MCP Servers
Extend your agent with 16,031 capabilities via MCP servers.
- All16,031
- 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
Skill Management MCP Server
Enables Claude to create, edit, run, and manage reusable skills stored locally, including executing scripts with automatic dependency management and environment variables. Works across all MCP-compatible clients like Cursor, Claude Desktop, and claude.ai.
BlenderMCP
Connects Blender to Claude AI through the Model Context Protocol (MCP), enabling prompt-assisted 3D modeling, scene creation, and manipulation.
ZeroTrusted-ai PII Detection Agent
ZeroTrusted-ai PII Detection Agent
Bargainer MCP Server
A Model Context Protocol server that aggregates and compares deals from multiple sources including Slickdeals, RapidAPI marketplace, and web scraping, enabling users to search, filter, and compare deals through a chat interface.
Gemini Context MCP Server
Cermin dari
Greenhouse MCP Server by CData
This project builds a read-only MCP server. For full read, write, update, delete, and action capabilities and a simplified setup, check out our free CData MCP Server for Greenhouse (beta): https://www.cdata.com/download/download.aspx?sku=PGZK-V&type=beta
中国城市天气查询 MCP 服务
Flexible Key-Value Extracting MCP Server
Extracts structured key-value pairs from arbitrary, noisy, or unstructured text using LLMs and provides output in multiple formats (JSON, YAML, TOML) with type safety.
MCP Documentation Server
A server that provides organized documentation content for various applications using the Model Context Protocol, enabling AI assistants to access quickstart guides and code examples.
Weekly Weather
Weather forecast server which returns 7 days of detailed weather anywhere in the world, using the OpenWeatherMap One Call API 3.0.
steampipe-mcp
steampipe-mcp
İhale MCP
Enables users to search and access Turkish public procurement data from EKAP v2 portal. Provides comprehensive tender search, detailed tender information, announcements, and authority/classification code lookups through natural language interactions.
MCP Server Scrapli
MCP Server SSH Server
python-base-mcp-server
Templat cookiecutter untuk dengan cepat melakukan bootstrapping server MCP berbasis Python.
IoT Realm MCP Server 🌐🔌
🌐🔌 An MCP server that exposes real-time sensor data from IoT Realm devices—such as ESP32-based DHT11 clients—to LLMs via the Model Context Protocol. This enables AI agents to access, analyze, and act upon live environmental data.
Hubble MCP Server
A Python-based Model Context Protocol server that integrates with Claude Desktop, allowing users to connect to Hubble API services by configuring the server with their Hubble API key.
Jina AI Remote MCP Server
Provides access to Jina AI's suite of tools including web search, URL reading, image search, embeddings, and reranking capabilities. Enables users to extract web content as markdown, search academic papers, capture screenshots, and perform semantic operations through natural language.
Artsy Analytics MCP Server
A Model Context Protocol server that provides Artsy partner analytics tools for Claude Desktop, allowing users to query gallery metrics, sales data, audience insights, and content performance through natural language.
MCP-ChatBot
Tentu, berikut adalah contoh sederhana klien-server MCP (Minecraft Communications Protocol) dalam bahasa Inggris, yang kemudian akan saya terjemahkan ke dalam bahasa Indonesia: **English:** ```python # Simple MCP Client (Python) import socket HOST = '127.0.0.1' # The server's hostname or IP address PORT = 25565 # The port used by the server with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.connect((HOST, PORT)) s.sendall(b'Hello, server!') data = s.recv(1024) print('Received', repr(data)) # Simple MCP Server (Python) import socket HOST = '127.0.0.1' # Standard loopback interface address (localhost) PORT = 25565 # Port to listen on (non-privileged ports are > 1023) with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.bind((HOST, PORT)) s.listen() conn, addr = s.accept() with conn: print('Connected by', addr) while True: data = conn.recv(1024) if not data: break conn.sendall(data) ``` **Indonesian Translation:** ```python # Contoh Sederhana Klien MCP (Python) import socket HOST = '127.0.0.1' # Alamat IP atau nama host server PORT = 25565 # Port yang digunakan oleh server with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.connect((HOST, PORT)) s.sendall(b'Halo, server!') data = s.recv(1024) print('Diterima', repr(data)) # Contoh Sederhana Server MCP (Python) import socket HOST = '127.0.0.1' # Alamat loopback standar (localhost) PORT = 25565 # Port untuk didengarkan (port non-privilege adalah > 1023) with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.bind((HOST, PORT)) s.listen() conn, addr = s.accept() with conn: print('Terhubung oleh', addr) while True: data = conn.recv(1024) if not data: break conn.sendall(data) ``` **Explanation (Both Languages):** * **Client:** * Creates a socket and connects to the server's IP address and port. * Sends the message "Hello, server!" to the server. * Receives data back from the server and prints it. * **Server:** * Creates a socket and binds it to the specified IP address and port. * Listens for incoming connections. * Accepts a connection from a client. * Receives data from the client. * Sends the same data back to the client (echo server). * Continues to receive and send data until the client closes the connection. **How to Run:** 1. Save the server code as `server.py` and the client code as `client.py`. 2. Open two terminal windows. 3. In one terminal, run the server: `python server.py` 4. In the other terminal, run the client: `python client.py` You should see the server print "Connected by" and the client print "Received". The client will receive the same message it sent. **Important Notes:** * This is a very basic example. Real MCP communication is much more complex and involves specific packet formats. * This example uses a simple string message. MCP uses binary data. * Error handling is minimal. In a real application, you would need to handle exceptions and potential errors. * The port number (25565) is just an example. You can use any available port above 1023. Minecraft typically uses 25565 by default. * This example is for demonstration purposes only and is not a complete MCP implementation. To work with Minecraft's actual MCP, you would need to understand the packet structure and protocol details. This provides a basic understanding of client-server communication using sockets, which is a fundamental concept behind MCP. Let me know if you have any more questions.
Workflow MCP Server
MCP Link - Convert Any OpenAPI V3 API to MCP Server
Convert Any OpenAPI V3 API to MCP Server
MSSQL MCP Server
A Model Context Protocol server that enables LLMs like Claude to interact with Microsoft SQL Server databases through natural language, supporting queries, data manipulation, and table management.
Weather MCP Server
Provides weather information for cities through a protected MCP interface with Nevermined payment integration. Demonstrates both high-level and low-level MCP server implementations with paywall protection for tools, resources, and prompts.
Serverless VPC Access MCP Server
An auto-generated MCP server for Google's Serverless VPC Access API, enabling communication with Google Cloud VPC networks through natural language interactions.
EDA Tools MCP Server
A comprehensive Model Context Protocol server that connects AI assistants to Electronic Design Automation tools, enabling Verilog synthesis, simulation, ASIC design flows, and waveform analysis through natural language interaction.
PAELLADOC
A Model Context Protocol (MCP) server that implements AI-First Development framework principles, allowing LLMs to interact with context-first documentation tools and workflows for preserving knowledge and intent alongside code.
ddg--mcp6
A basic MCP server template with example tools for echoing messages and retrieving server information. Built with FastMCP framework and supports both stdio and HTTP transports for integration with various clients.
FiveM MCP Server
A TypeScript-based server that provides debugging and management capabilities for FiveM plugin development, allowing developers to control plugins, monitor server logs, and execute RCON commands.
MCP Server for Documentation Search