Discover Awesome MCP Servers
Extend your agent with 16,892 capabilities via MCP servers.
- All16,892
- 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
You.com MCP Server
MCP server that provides Claude AI assistants with the ability to search the web, get news, and perform research using the You.com API.
MCP SQL Server
A Model Context Protocol server that allows Large Language Models like Claude to execute SQL queries, explore database schemas, and maintain persistent connections to SQL Server databases.
Remote MCP Server
A template for deploying MCP servers on Cloudflare Workers with OAuth authentication and Server-Sent Events transport. Enables remote access to MCP tools from Claude Desktop and other clients over HTTP.
MCP Todo List Manager
Enables natural language todo list management through Claude Desktop with YAML-based persistence. Supports creating, completing, deleting, and listing todo items with automatic timestamp tracking and secure file permissions.
apisetu-mcp-server
Máy chủ API Setu MCP
K8s MCP Server
K8s-mcp-server là một máy chủ Giao thức Ngữ cảnh Mô hình (MCP) cho phép các trợ lý AI như Claude thực thi các lệnh Kubernetes một cách an toàn. Nó cung cấp một cầu nối giữa các mô hình ngôn ngữ và các công cụ CLI Kubernetes thiết yếu bao gồm kubectl, helm, istioctl và argocd, cho phép các hệ thống AI hỗ trợ quản lý cụm, khắc phục sự cố và triển khai.
Octocode MCP
AI-powered code assistant that provides advanced search and discovery capabilities across GitHub and NPM ecosystems, helping users understand code patterns, implementations, and connections between repositories.
Sloot MCP Server
A TypeScript MCP server implementation using Express.js that provides basic tools like echo, time retrieval, and calculator functionality. Features session management, RESTful API endpoints, and Server-Sent Events for streamable communication.
Google Calendar MCP Server
n8n - Secure Workflow Automation for Technical Teams
Nền tảng tự động hóa quy trình làm việc mã nguồn mở (fair-code) với các khả năng AI tích hợp. Kết hợp xây dựng trực quan với mã tùy chỉnh, tự lưu trữ hoặc trên đám mây, hơn 400 tích hợp.
Kali Pentest MCP Server
Provides secure access to penetration testing tools from Kali Linux including nmap, nikto, dirb, wpscan, and sqlmap for educational vulnerability assessment. Operates in a controlled Docker environment with target whitelisting to ensure ethical testing practices.
Agent Interviews
Agent Interviews
OptionsFlow
Một máy chủ Giao thức Bối cảnh Mô hình (Model Context Protocol) cho phép các LLM (Mô hình Ngôn ngữ Lớn) phân tích chuỗi quyền chọn, tính toán các chỉ số Greeks và đánh giá các chiến lược quyền chọn cơ bản thông qua dữ liệu từ Yahoo Finance.
NotePlan MCP Server
A Message Control Protocol server that enables Claude Desktop to interact with NotePlan.co, allowing users to query, search, create, and update notes directly from Claude conversations.
Cortex Context MCP Adapter
Enables integration with Cortex Context services through the Model Context Protocol. Provides authenticated access to CortexGuardAI's context management capabilities for registered users.
MCP demo (DeepSeek as Client's LLM)
Okay, I understand. You want instructions on how to run a Minimal Communication Protocol (MCP) client and server demo using the DeepSeek API. Unfortunately, I need a little more information to give you a precise and helpful answer. Here's why, and what I need to know: **Why I need more information:** * **"MCP" is very generic:** "Minimal Communication Protocol" could refer to many different things. It's not a standardized protocol like HTTP or TCP. It's likely a custom protocol you or someone else has defined. * **DeepSeek API's Role:** The DeepSeek API is primarily known for its large language models (LLMs). It's not immediately clear how it fits into a *communication protocol* demo. Are you intending to use the DeepSeek API to: * **Generate messages for the MCP?** (e.g., the server uses DeepSeek to create responses based on client requests) * **Analyze messages sent over the MCP?** (e.g., the server uses DeepSeek to understand the intent of client requests) * **Something else entirely?** * **Existing Code/Setup:** Do you already have: * MCP client and server code (even if it's basic)? * A DeepSeek API key? * A programming language preference (Python, Node.js, etc.)? **Here's what I need you to tell me so I can provide a useful answer:** 1. **Describe the MCP:** * What is the purpose of this MCP? What kind of data will be exchanged? * What is the message format (e.g., text-based, binary, JSON)? If text-based, what's the structure? * What are the basic commands or message types? 2. **Explain how you want to use the DeepSeek API:** * Specifically, what role will the DeepSeek API play in the client/server interaction? Give a concrete example. 3. **Programming Language:** * What programming language are you using (e.g., Python, Node.js, Go, Java)? 4. **Existing Code (if any):** * Please share any code you already have for the MCP client, server, or DeepSeek API integration. Even snippets are helpful. 5. **DeepSeek API Key:** * Do you have a DeepSeek API key? (You don't need to share the key itself, just confirm you have one). **Example Scenario (and how I would answer *if* this were your scenario):** Let's *imagine* you want to build a simple "Echo Server" MCP where: * **MCP:** * Clients send text messages to the server. * The server *echoes* the message back to the client, but *enhanced* by the DeepSeek API. * Message format: Plain text. * Command: Just send text; no specific commands. * **DeepSeek API:** * The server uses the DeepSeek API to add a humorous or creative "spin" to the echoed message. For example, if the client sends "Hello", the server might respond with "Hello! As a large language model, I'm contractually obligated to say: Have a fantastic day!". * **Language:** Python * **I have a DeepSeek API key.** **Then, I could provide a Python example like this:** ```python import socket import deepseek_client # Assuming you have a DeepSeek client library # Replace with your DeepSeek API key DEEPSEEK_API_KEY = "YOUR_DEEPSEEK_API_KEY" # MCP Server settings HOST = '127.0.0.1' # Standard loopback interface address (localhost) PORT = 65432 # Port to listen on (non-privileged ports are > 1023) def enhance_with_deepseek(message): """Uses the DeepSeek API to enhance the message.""" try: client = deepseek_client.DeepSeekClient(DEEPSEEK_API_KEY) # Replace with your actual client initialization prompt = f"Enhance the following message with a humorous or creative twist: '{message}'" response = client.generate_text(prompt) # Replace with the correct method call return response.text # Assuming the response has a 'text' attribute except Exception as e: print(f"Error using DeepSeek API: {e}") return f"Error: Could not enhance message. Original: {message}" # Fallback def run_server(): with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.bind((HOST, PORT)) s.listen() print(f"Server listening on {HOST}:{PORT}") conn, addr = s.accept() with conn: print(f"Connected by {addr}") while True: data = conn.recv(1024) if not data: break message = data.decode('utf-8') enhanced_message = enhance_with_deepseek(message) conn.sendall(enhanced_message.encode('utf-8')) def run_client(): with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.connect((HOST, PORT)) message = input("Enter message to send: ") s.sendall(message.encode('utf-8')) data = s.recv(1024) print(f"Received: {data.decode('utf-8')}") if __name__ == "__main__": import threading server_thread = threading.Thread(target=run_server) server_thread.daemon = True # Allow the main thread to exit even if the server is running server_thread.start() run_client() ``` **Important Notes about the Example:** * **`deepseek_client`:** This is a placeholder. You'll need to install the appropriate DeepSeek API client library for Python (if one exists; otherwise, you'll need to use `requests` or a similar library to make HTTP calls to the DeepSeek API). You'll also need to adapt the `deepseek_client.DeepSeekClient()` and `client.generate_text()` calls to match the actual API usage. Refer to the DeepSeek API documentation for details. * **Error Handling:** The example includes basic error handling for the DeepSeek API call. You should add more robust error handling in a real application. * **Threading:** The server runs in a separate thread so the client and server can run concurrently on the same machine for testing. * **Replace `YOUR_DEEPSEEK_API_KEY`:** You *must* replace this with your actual DeepSeek API key. * **Install `socket`:** This is a built-in Python library, so no installation is needed. **How to Run the Example (after you've adapted it):** 1. **Save:** Save the code as a Python file (e.g., `mcp_deepseek_demo.py`). 2. **Install DeepSeek Client (if applicable):** `pip install deepseek-client` (or whatever the correct package name is). 3. **Run:** Execute the script from your terminal: `python mcp_deepseek_demo.py` 4. **Enter a message:** The client will prompt you to enter a message. Type something and press Enter. 5. **See the response:** The client will display the enhanced message received from the server. **In summary, please provide the details I requested above so I can give you a much more specific and helpful answer.**
Access Context Manager API MCP Server
An MCP server that provides access to Google's Access Context Manager API, enabling management of service perimeters and access levels through natural language.
OneTech MCP Server
Enables AI assistants to extract and document Mendix Studio Pro modules by interrogating local .mpr files. Generates comprehensive JSON documentation of domain models, pages, microflows, and enumerations without sending data to the cloud.
Reddit MCP Server
Provides access to Reddit's API for retrieving posts, comments, user information, and search functionality. Supports multiple authentication methods and comprehensive Reddit data operations including subreddit browsing, post retrieval, and user profile access.
Pinecone Economic Books
Enables semantic search through a Pinecone vector database containing economic books and academic papers using natural language queries. Provides 10 specialized search tools with metadata filtering for precise discovery of economic theories, concepts, and research by author, subject, or book.
Things MCP Server
Integrates with Things 3 task management app on macOS via URL schemes, enabling creation, updating, deletion of todos and projects, navigation, search, and JSON batch imports.
Futurama Quote Machine MCP Server
Enables interaction with Futurama quotes through Claude Desktop by connecting to the Futurama Quote Machine API. Supports getting random quotes, searching by character, adding new quotes, editing existing ones, and managing the quote collection through natural language.
Remote MCP Server on Cloudflare
DataForSEO MCP Server
Một máy chủ dựa trên stdio cho phép tương tác với DataForSEO API thông qua Giao thức Ngữ cảnh Mô hình (Model Context Protocol), cho phép người dùng lấy dữ liệu SEO bao gồm kết quả tìm kiếm, dữ liệu từ khóa, backlink, phân tích on-page và nhiều hơn nữa.
go-mcp-server-mds
Dưới đây là bản dịch tiếng Việt của đoạn văn trên: Một triển khai bằng Go của máy chủ Giao thức Ngữ cảnh Mô hình (Model Context Protocol - MCP) phục vụ các tệp markdown có hỗ trợ frontmatter từ một hệ thống tệp.
MCP Mediator
Một triển khai dựa trên Java của bộ điều phối Giao thức Ngữ cảnh Mô hình (MCP), cung cấp sự tích hợp liền mạch giữa các máy khách và máy chủ MCP.
Hong Kong Creative Goods Trade MCP Server
Provides access to Hong Kong's recreation, sports, and cultural data through a FastMCP interface, allowing users to retrieve statistics on creative goods trade including domestic exports, re-exports, and imports with optional year filtering.
mcp-server-gist
Kaggle NodeJS MCP Server
MCP Iceberg Catalog
Máy chủ MCP để tương tác với danh mục Apache Iceberg từ Claude, cho phép khám phá data lake và tìm kiếm metadata thông qua một prompt LLM.