Discover Awesome MCP Servers
Extend your agent with 27,188 capabilities via MCP servers.
- All27,188
- 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
YYSK MCP Server
An enterprise internal knowledge base assistant that enables AI models to retrieve company wikis, regulations, and notices via the Model Context Protocol. It features a built-in React management dashboard for content editing and utilizes SQLite for efficient keyword and category-based searching.
Project Portfolio Guide MCP Server
A Model Context Protocol server that helps collect and structure project portfolio information through a guided conversation flow.
Google Search MCP Server
Enables Google search functionality through the Google Custom Search API with enterprise-grade security authentication. Supports streamable HTTP transport protocol for real-time search operations with configurable result limits.
MCP Datastore Server
An MCP server that provides simple query capabilities for Google Cloud Datastore, allowing users to list kinds, retrieve entities, run basic queries with pagination, filter entities by equality, and count entities.
Tesla MCP Server
An MCP server that connects to the Tesla Fleet API, allowing users to control vehicles and retrieve real-time status updates through Claude and other AI assistants. It supports functions such as waking up vehicles, viewing detailed vehicle information, and debugging via both stdio and HTTP/SSE transports.
S3 MCP Server
Enables interaction with AWS S3 through MCP, supporting bucket and object management, lifecycle configurations, tagging, policies, CORS settings, presigned URLs, and file uploads/downloads.
mcp-server
LLM Context
Chia sẻ ngữ cảnh mã với LLM qua MCP hoặc clipboard.
Typesense MCP Server
Gương của
ArXiv MCP Server
Enables AI assistants to search arXiv's research repository, download papers, and access their content programmatically. Includes specialized prompts for comprehensive academic paper analysis covering methodology, results, and implications.
Go-MCP-File-Server
🚀 Model Context Protocol (MCP) Server Python Template 🐍
Gương của
MCP + LangGraph Agent
Hướng dẫn về tác tử LangGraph được điều chỉnh để sử dụng máy chủ MCP.
juba-mcp
An MCP server for searching the Jurisprudencia de Buenos Aires (JUBA) database for legal summaries and full-text judicial rulings. It enables AI assistants to perform advanced searches across various legal matters from the Supreme Court of the Province of Buenos Aires.
infomesh
Fully decentralized P2P web search engine for LLMs. Crawls, indexes, and searches the web via a peer-to-peer network — no API key, no billing. Exposes 5 MCP tools: web_search, fetch_page, crawl_url, fact_check, and status.
Pandas MCP Server
Newsbang MCP
Newsbang MCP is a powerful Model Context Protocol (MCP) server that provides access to real-time news intelligence through three essential tools: get_today_top_news,search_news,get_news_deep_report_and_analysis
Test MCP Server
Kho lưu trữ thử nghiệm cho chức năng máy chủ MCP
GAS MCP Server Advanced
An enterprise-grade MCP server that integrates AI agents with Google Sheets and Apps Script using over 100 specialized tools for automation and data analysis. It features a self-healing architecture with advanced security and observability for production-ready workflows.
Basic Math MCP Server
A simple server that provides basic mathematical operations (sum and subtraction) through the Model Context Protocol.
mcpo-docker
Tuyệt vời, đây là một ví dụ Docker image cho mcpo, một công cụ giúp hiển thị các máy chủ MCP (Model Context Protocol) dưới dạng các điểm cuối HTTP tương thích với OpenAPI cho OpenWebUI: ```dockerfile # Sử dụng một image nền tảng phù hợp, ví dụ Python FROM python:3.11-slim-buster # Đặt thư mục làm việc WORKDIR /app # Sao chép các tệp cần thiết COPY requirements.txt . COPY mcpo.py . COPY config.yaml . # Nếu bạn có tệp cấu hình # Cài đặt các phụ thuộc RUN pip install --no-cache-dir -r requirements.txt # Mở cổng (nếu cần) EXPOSE 8000 # Thay đổi nếu bạn sử dụng cổng khác # Lệnh chạy ứng dụng CMD ["python", "mcpo.py", "--config", "config.yaml"] # Thay đổi nếu bạn không dùng config.yaml hoặc có tham số khác ``` **Giải thích:** * **`FROM python:3.11-slim-buster`**: Chọn một image Python làm nền tảng. `slim-buster` là một phiên bản nhỏ gọn của Debian Buster, giúp giảm kích thước image. Bạn có thể chọn phiên bản Python khác nếu cần. * **`WORKDIR /app`**: Đặt thư mục làm việc bên trong container thành `/app`. * **`COPY requirements.txt .`**: Sao chép tệp `requirements.txt` (chứa danh sách các thư viện Python cần thiết) vào thư mục làm việc. * **`COPY mcpo.py .`**: Sao chép tệp `mcpo.py` (mã nguồn của mcpo) vào thư mục làm việc. * **`COPY config.yaml .`**: Sao chép tệp `config.yaml` (tệp cấu hình cho mcpo, nếu có) vào thư mục làm việc. * **`RUN pip install --no-cache-dir -r requirements.txt`**: Cài đặt các thư viện Python được liệt kê trong `requirements.txt`. `--no-cache-dir` giúp giảm kích thước image bằng cách không lưu trữ cache của pip. * **`EXPOSE 8000`**: Khai báo rằng container sẽ lắng nghe trên cổng 8000. Điều này không tự động publish cổng, bạn cần publish nó khi chạy container bằng Docker. * **`CMD ["python", "mcpo.py", "--config", "config.yaml"]`**: Chỉ định lệnh sẽ được chạy khi container khởi động. Trong trường hợp này, nó chạy `mcpo.py` với tệp cấu hình `config.yaml`. Hãy điều chỉnh lệnh này cho phù hợp với cách bạn chạy mcpo. **Các bước sử dụng:** 1. **Tạo tệp `requirements.txt`**: Liệt kê tất cả các thư viện Python mà `mcpo.py` cần. Ví dụ: ``` fastapi uvicorn pydantic # ... các thư viện khác ``` 2. **Tạo tệp `config.yaml` (nếu cần)**: Chứa các cấu hình cho mcpo, ví dụ như địa chỉ của máy chủ MCP, cổng, v.v. 3. **Lưu Dockerfile**: Lưu đoạn code trên vào một tệp tên là `Dockerfile` (không có phần mở rộng). 4. **Build image**: Chạy lệnh sau trong thư mục chứa `Dockerfile`: ```bash docker build -t mcpo-image . ``` Thay `mcpo-image` bằng tên bạn muốn đặt cho image. 5. **Chạy container**: ```bash docker run -d -p 8000:8000 mcpo-image ``` * `-d`: Chạy container ở chế độ nền (detached). * `-p 8000:8000`: Publish cổng 8000 của container ra cổng 8000 của máy chủ. Bạn có thể thay đổi cổng bên ngoài nếu cần. **Lưu ý:** * Thay thế các giá trị placeholder (ví dụ: phiên bản Python, cổng, tên tệp cấu hình) bằng các giá trị thực tế của bạn. * Đảm bảo rằng `mcpo.py` và `config.yaml` nằm trong cùng thư mục với `Dockerfile` khi bạn build image. * Kiểm tra nhật ký của container để xem có lỗi nào không. Bạn có thể xem nhật ký bằng lệnh `docker logs <container_id>`. * Nếu bạn cần truy cập các tài nguyên bên ngoài container (ví dụ: một máy chủ MCP chạy trên một máy khác), bạn có thể cần cấu hình mạng Docker hoặc sử dụng các biến môi trường. Ví dụ này cung cấp một điểm khởi đầu tốt. Bạn có thể cần điều chỉnh nó để phù hợp với nhu cầu cụ thể của bạn. Chúc bạn thành công!
cortex-mcp
An MCP server for the Cortex observable analysis and active response engine. It enables LLMs to automate security investigations by running analyzers on observables like IPs and URLs and executing automated response actions.
Lemonade Stand MCP Server
A Model Context Protocol server that enables Claude Desktop to play the classic Lemonade Stand business simulation game with dynamic weather, pricing strategies, and inventory management.
OpenReview MCP Server
Connects Claude to OpenReview to facilitate conference reviewer and area chair workflows through the Model Context Protocol. It enables users to manage paper assignments, read submissions and reviews, and perform write actions like submitting reviews or comments using a preview-and-confirm system.
Scopus MCP Server
Provides access to the Elsevier Scopus API, enabling AI assistants to search for academic papers, retrieve detailed abstracts, and look up author profiles. It facilitates bibliometric research and scholarly data analysis through natural language commands.
Orbination AI Desktop Vision & Control
Native Windows MCP server that gives AI agents full desktop control. 45+ tools using UIAutomation + OCR with automatic dark theme enhancement instead of screenshots. Features batch action sequencing (run_sequence), window occlusion detection, menu navigation, PrintWindow capture, and embedded AI workflow instructions. Single .NET 8 executable — no Python, no Node, no Selenium.
Gazebo MCP Server
Enables AI assistants to control Gazebo robot simulations through ROS2, including spawning robots (TurtleBot3), manipulating environments, accessing sensor data (camera, LiDAR, IMU), and managing simulation state.
BuildClub.io Official MCP Server
Máy chủ MCP chính thức của BuildClub
Golf v2 MCP Server
An auto-generated Multi-Agent Conversation Protocol server that enables interaction with professional golf data through the SportsData.io Golf v2 API.
Nx MCP Server
Máy chủ Nx MCP cung cấp cho LLM những hiểu biết toàn diện về monorepo của bạn: các phụ thuộc dự án, mối quan hệ giữa các tệp, các tác vụ có thể thực thi, siêu dữ liệu quyền sở hữu, các ngăn xếp công nghệ, trình tạo tùy chỉnh và tài liệu Nx. Bối cảnh sâu sắc này cho phép LLM tạo ra mã hoàn toàn phù hợp với kiến trúc của bạn.