Discover Awesome MCP Servers

Extend your agent with 42,685 capabilities via MCP servers.

All42,685
sift-mcp

sift-mcp

Read-only MCP server that exposes deterministic NTFS timestomp detection tools for autonomous forensic triage, with architectural guarantees against evidence modification.

Onesource MCP

Onesource MCP

MCP server with 43 tools for blockchain data — token lookups, wallet balances, live chain queries across 10+ networks, and full API documentation search.

W3Ship MCP Server

W3Ship MCP Server

Primary purpose is to link public key identity to physical address anonymously. But from there TMF forum implementation of cart and ordering and more.

Salesforce MCP Server

Salesforce MCP Server

Enables AI assistants to interact with Salesforce organizations, allowing them to execute Apex code, query data, describe objects, and manage org connections through natural language.

Telos Network MCP Server

Telos Network MCP Server

A comprehensive suite of tools for DeFi operations and analytics on the Telos blockchain, including liquid staking, token swaps via Swapsicle, and real-time market data integration. It enables AI assistants to execute transactions, manage token portfolios, and monitor protocol yields through natural language.

Ringback

Ringback

Let your AI agent call your phone and talk to you — MCP servers for live, interruptible voice calls + tiered alerts, using free self-hosted pieces (pjsua2 + whisper.cpp + Linphone). No paid telephony, no extra API key.

okama MCP

okama MCP

MCP (Model Context Protocol) server that exposes the okama investment portfolio toolkit to AI assistants — Claude Desktop, Claude Code, Cursor, Codex, and any other MCP-compatible client.

HTML Parser AI MCP

HTML Parser AI MCP

HTML Parser AI - MCP server providing AI-powered tools and automation by MEOK AI Labs

Huly MCP Server

Huly MCP Server

Enables interaction with Huly workspaces via WebSocket API to manage projects and issues with correct field mapping. It allows users to create and list issues while automatically resolving project-specific task type IDs for accurate data synchronization.

E-commerce MCP Server

E-commerce MCP Server

A Model Context Protocol server that provides real-time access to MongoDB product data, enabling sophisticated e-commerce queries with price range filters, category searching, and product recommendations through a conversational interface.

publicfinance

publicfinance

Enables AI agents to access SEC EDGAR filings, US Treasury rates, BLS labor statistics, and economic indicators without API keys.

MCP-CLIO

MCP-CLIO

Exposes Creatio CLI (CLIO) commands as tools for AI agents to manage Creatio environments. It enables users to perform environment health checks, restart web applications, and execute raw CLI commands through a stateless HTTP transport.

email-mcp-server

email-mcp-server

An MCP server that enables AI assistants to send emails via SMTP, supporting simple and custom emails with attachments and CC/BCC, plus connection testing.

LocalNest MCP

LocalNest MCP

A local-first MCP server that provides AI agents with safe codebase access through file discovery, hybrid lexical-semantic search, and project introspection. It features durable local memory and semantic indexing while keeping all data and processing entirely on your local machine.

zendesk-mcp

zendesk-mcp

Connects AI assistants to your Zendesk account with 14 curated tools for managing tickets, users, organizations, and help center articles, running locally with no third-party services.

PipeDrive MCP Server

PipeDrive MCP Server

A comprehensive MCP server for the Pipedrive CRM API, enabling AI assistants to read, write, and analyze CRM data conversationally through 100 tools including performance reporting and loss analysis.

SettleMesh

SettleMesh

Deploy and monetize agent-built apps from one MCP. Ship a full-stack app (login, database, usage billing) with one command, then charge the signed-in end user per API call via X-Settle-Payer (end-user-pays: cost times markup, app owner earns the markup).

GitHub MCP Server

GitHub MCP Server

Enables AI agents to analyze employee GitHub activity including PRs, code reviews, comments, and contributions across repositories with time-range filtering for performance assessment and impact analysis.

MemeOracle

MemeOracle

Memecoin Intelligence MCP Server — 9 tools for rug-check risk scoring, momentum analysis, whale watch, viral detection across 80+ chains. Part of ToolOracle (tooloracle.io).

Things MCP Server

Things MCP Server

Enables interaction with the Things app for task management, allowing natural language task creation, project analysis, and priority management.

Careerjet Job Search MCP Server

Careerjet Job Search MCP Server

Enables job searching functionality using Careerjet API with features like keyword and location-based searches, advanced filtering, and multi-language support across 50+ countries.

Visum Thinker MCP Server

Visum Thinker MCP Server

Provides structured sequential thinking capabilities for AI assistants to break down complex problems into manageable steps, revise thoughts, and explore alternative reasoning paths.

Crunchbase MCP Server

Crunchbase MCP Server

Một máy chủ Giao thức Ngữ cảnh Mô hình (MCP) cung cấp quyền truy cập vào dữ liệu Crunchbase cho các trợ lý AI. Máy chủ này cho phép các trợ lý AI tìm kiếm công ty, lấy thông tin chi tiết về công ty, thông tin tài trợ, các vụ mua lại và dữ liệu về con người từ Crunchbase.

Mcp Server Docker

Mcp Server Docker

Chắc chắn rồi, đây là một ví dụ về cách tạo một máy chủ MCP (Minecraft Protocol) bằng Docker: **Dockerfile** ```dockerfile FROM openjdk:17-jdk-slim # Tải xuống và cài đặt MCP RUN apt-get update && apt-get install -y wget unzip RUN wget https://files.minecraftforge.net/maven/de/oceanlabs/mcp/mcp_config/1.19.4/mcp_config-1.19.4.zip -O mcp.zip RUN unzip mcp.zip -d mcp RUN rm mcp.zip # Chuyển đến thư mục MCP WORKDIR /mcp/mcp_config-1.19.4 # Giải nén và cấu hình MCP RUN ./install.sh # Sao chép các tệp nguồn Minecraft COPY src ./src # Giải mã và biên dịch RUN ./compile.sh # Tạo thư mục đầu ra RUN mkdir -p /output # Tạo JAR đã sửa đổi RUN ./recompile.sh # Sao chép JAR đã sửa đổi vào thư mục đầu ra RUN cp build/minecraft_server.jar /output/minecraft_server.jar # Đặt thư mục làm việc thành thư mục đầu ra WORKDIR /output # Lệnh để chạy máy chủ Minecraft CMD ["java", "-jar", "minecraft_server.jar"] ``` **Giải thích:** * `FROM openjdk:17-jdk-slim`: Sử dụng hình ảnh Docker OpenJDK 17 làm cơ sở. * `RUN apt-get update && apt-get install -y wget unzip`: Cài đặt các công cụ cần thiết (wget và unzip). * `RUN wget ...`: Tải xuống MCP. * `RUN unzip ...`: Giải nén MCP. * `WORKDIR /mcp/mcp_config-1.19.4`: Đặt thư mục làm việc thành thư mục MCP. * `RUN ./install.sh`: Chạy script cài đặt MCP. * `COPY src ./src`: Sao chép các tệp nguồn Minecraft vào thư mục `src`. **Lưu ý:** Bạn cần cung cấp thư mục `src` này, chứa các tệp nguồn Minecraft mà bạn muốn sửa đổi. * `RUN ./compile.sh`: Biên dịch các tệp nguồn. * `RUN mkdir -p /output`: Tạo thư mục đầu ra. * `RUN ./recompile.sh`: Tạo JAR đã sửa đổi. * `RUN cp ...`: Sao chép JAR đã sửa đổi vào thư mục đầu ra. * `WORKDIR /output`: Đặt thư mục làm việc thành thư mục đầu ra. * `CMD ["java", "-jar", "minecraft_server.jar"]`: Lệnh để chạy máy chủ Minecraft. **Cách sử dụng:** 1. **Tạo một thư mục:** Tạo một thư mục để chứa Dockerfile và các tệp nguồn Minecraft của bạn (ví dụ: `mcp-server`). 2. **Tạo Dockerfile:** Tạo một tệp có tên `Dockerfile` trong thư mục đó và dán nội dung trên vào. 3. **Tạo thư mục `src`:** Tạo một thư mục con có tên `src` và đặt các tệp nguồn Minecraft bạn muốn sửa đổi vào đó. **Quan trọng:** Bạn cần có các tệp nguồn Minecraft hợp lệ để MCP hoạt động. 4. **Xây dựng hình ảnh Docker:** Mở terminal hoặc command prompt, điều hướng đến thư mục `mcp-server` và chạy lệnh sau: ```bash docker build -t mcp-server . ``` 5. **Chạy container Docker:** Sau khi hình ảnh được xây dựng, bạn có thể chạy container bằng lệnh sau: ```bash docker run -p 25565:25565 mcp-server ``` Lệnh này sẽ ánh xạ cổng 25565 trên máy chủ của bạn đến cổng 25565 trong container, cho phép bạn kết nối với máy chủ Minecraft. **Lưu ý quan trọng:** * **Bản quyền:** Việc phân phối lại các tệp nguồn Minecraft có thể vi phạm bản quyền. Hãy đảm bảo bạn có quyền cần thiết trước khi chia sẻ hoặc phân phối bất kỳ tệp nào. * **Phiên bản Minecraft:** Đảm bảo rằng phiên bản MCP và phiên bản Minecraft bạn đang sử dụng tương thích. * **Sửa đổi:** Bạn cần sửa đổi các tệp nguồn trong thư mục `src` trước khi xây dựng hình ảnh Docker. * **EULA:** Bạn cần chấp nhận EULA của Minecraft bằng cách thêm biến môi trường `EULA=TRUE` khi chạy container: ```bash docker run -p 25565:25565 -e EULA=TRUE mcp-server ``` Ví dụ này cung cấp một điểm khởi đầu cơ bản. Bạn có thể cần điều chỉnh nó để phù hợp với nhu cầu cụ thể của mình. Hãy nhớ rằng việc sử dụng MCP đòi hỏi kiến thức về Java và cấu trúc mã nguồn của Minecraft.

CNCjs MCP Server

CNCjs MCP Server

Bridges Claude Code to CNCjs to enable remote control and monitoring of GRBL-based CNC machines. It provides a comprehensive toolset for managing G-code jobs, machine movement, and safety operations through natural language.

yawa

yawa

Self-hosted web analytics platform that exposes analytics data via the Model Context Protocol, enabling natural language queries about traffic, page views, web vitals, and custom events.

mcp-linux-tools

mcp-linux-tools

Enables AI assistants to perform controlled Linux system administration tasks like reading logs, managing services, cron jobs, WordPress, and executing sandboxed Python code, with strict security constraints.

AI_SOC_MCP_Server_Sher

AI_SOC_MCP_Server_Sher

AI\_SOC\_MCP\_Server\_Sher

Schwaizer BFS MCP Server

Schwaizer BFS MCP Server

An unofficial MCP server for accessing Swiss Federal Statistical Office (BFS) data.

lunar-mcp

lunar-mcp

lunar-mcp is a Go-based MCP server that provides 28+ tools for Chinese traditional calendar, fortune telling, and divination. It enables AI agents to integrate Chinese cultural computations into their workflows.