Discover Awesome MCP Servers

Extend your agent with 41,408 capabilities via MCP servers.

All41,408
arkime-mcp-server

arkime-mcp-server

An MCP server for Arkime full packet capture that enables AI assistants to search network sessions, investigate traffic patterns, and monitor capture health through various network analysis tools.

Work Integrations MCP

Work Integrations MCP

An MCP server that enables interaction with Jira to fetch issues by key and perform JQL searches. It provides a foundation for integrating multiple work systems, with planned support for Slack and GitHub.

Overseerr MCP Server

Overseerr MCP Server

Cho phép tương tác với Overseerr API để quản lý các yêu cầu phim và chương trình TV, cho phép người dùng kiểm tra trạng thái máy chủ và lọc các yêu cầu phương tiện theo nhiều tiêu chí khác nhau.

MCP Server

MCP Server

Đây là một kho lưu trữ cho các máy chủ MCP.

AdMob MCP Server

AdMob MCP Server

Connects Claude to the Google AdMob API to provide a conversational interface for managing and analyzing ad revenue data. It enables users to generate custom network reports, track performance trends, and diagnose revenue fluctuations using natural language.

Workout Maker MCP Server

Workout Maker MCP Server

This MCP server enables the generation of structured fitness content, including detailed exercise instructions with image prompts, balanced daily workout sessions, and personalized multi-day training plans. It facilitates the creation of comprehensive workout programs tailored to specific goals, age ranges, and movement patterns.

Vybog MCP Server

Vybog MCP Server

MCP server for the Fund Tracking System, enabling agents to manage lending business data such as entities, borrowers, investors, deals, and referrals with full CRUD and bulk operations.

HybridHub

HybridHub

Enables unified access to both structured databases (PostgreSQL, MySQL, SQLite, etc.) and unstructured object storage (AWS S3, Alibaba OSS, Huawei OBS, etc.) through a single interface.

GoDaddy Orders MCP Server

GoDaddy Orders MCP Server

MCP Server that enables interaction with GoDaddy's Orders API using natural language, auto-generated from the OTE GoDaddy Orders OpenAPI specification.

Manual RAG — SIH/SUS Query System

Manual RAG — SIH/SUS Query System

A RAG-based MCP server for natural language querying of Brazilian healthcare manuals (SIH/SUS, SIA/SUS) and official ordinances. It provides 16 tools for semantic search, regulatory critique analysis, and retrieving data from SIGTAP and CNES.

Tiendanube MCP Server

Tiendanube MCP Server

Enables comprehensive management of Tiendanube and Nuvemshop stores, supporting operations for products, orders, customers, and categories. It provides flexible integration through SSE, HTTP, and STDIO transport modes with full Docker support.

SQL Query MCP Server

SQL Query MCP Server

A FastMCP server that enables natural language querying of PostgreSQL databases through LLM integration, allowing users to generate SQL queries from plain English and visualize the results.

Lodgify MCP Server

Lodgify MCP Server

Enables interaction with the Lodgify vacation rental API to manage properties, bookings, and calendar data. It provides tools for retrieving property details, creating or updating bookings, and monitoring rental availability.

Cobalt Strike MCP Server

Cobalt Strike MCP Server

Enables management of Cobalt Strike red team operations through natural language commands, providing access to 200+ tools for beacon control, listener management, credential operations, and payload generation.

portkey-admin-mcp

portkey-admin-mcp

MCP server for Portkey Admin API - 116 tools for prompts, configs, analytics & more.

TrustMRR MCP Server

TrustMRR MCP Server

Connects AI assistants to the TrustMRR API to browse, filter, and analyze startup listings by revenue, MRR, and growth metrics. It enables detailed retrieval of startup financials and pricing for comprehensive deal analysis.

Ambari MCP Server

Ambari MCP Server

Enables AI assistants to manage Apache Ambari clusters, including services, hosts, alerts, and configurations via the MCP protocol.

Mcp-server-v2ex

Mcp-server-v2ex

Tuyệt vời! Dưới đây là bản dịch và một số gợi ý để bạn bắt đầu xây dựng máy chủ Minecraft (MCP) đơn giản bằng TypeScript: **Bản dịch:** "Simple learn mcp server build with ts" -> "Xây dựng máy chủ MCP đơn giản bằng TS (TypeScript) để học." **Gợi ý để bắt đầu:** Để xây dựng một máy chủ Minecraft đơn giản bằng TypeScript, bạn có thể làm theo các bước sau: 1. **Thiết lập môi trường:** * Đảm bảo bạn đã cài đặt Node.js và npm (hoặc yarn). * Tạo một thư mục dự án mới. * Khởi tạo dự án npm bằng `npm init -y`. * Cài đặt TypeScript: `npm install -D typescript @types/node` * Tạo file `tsconfig.json` để cấu hình TypeScript (ví dụ đơn giản): ```json { "compilerOptions": { "target": "es6", "module": "commonjs", "outDir": "./dist", "rootDir": "./src", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true } } ``` 2. **Cấu trúc dự án:** * Tạo thư mục `src` để chứa mã nguồn TypeScript của bạn. * Trong `src`, bạn có thể tạo các file như `index.ts` (điểm bắt đầu của máy chủ), `player.ts`, `world.ts`, v.v. để tổ chức mã. 3. **Chọn thư viện:** * Bạn có thể sử dụng các thư viện để giúp bạn xử lý các giao thức Minecraft. Một số lựa chọn phổ biến (mặc dù có thể cần điều chỉnh để phù hợp với phiên bản Minecraft bạn muốn hỗ trợ): * **node-minecraft-protocol:** Thư viện này cung cấp các chức năng để xử lý giao thức Minecraft. Tuy nhiên, nó có thể cần được cập nhật để hỗ trợ các phiên bản Minecraft mới nhất. * **prismarine-proxy:** Một phần của bộ thư viện PrismarineJS, có thể giúp bạn tạo proxy và tương tác với máy chủ Minecraft. * **mineflayer:** Thường được sử dụng cho bot, nhưng có thể cung cấp một số chức năng hữu ích để tương tác với máy chủ. 4. **Ví dụ đơn giản (index.ts):** ```typescript import * as net from 'net'; const server = net.createServer((socket) => { console.log('Client connected'); socket.on('data', (data) => { console.log('Received data:', data); // Xử lý dữ liệu nhận được từ client Minecraft ở đây // (ví dụ: giải mã gói tin, xử lý lệnh, v.v.) }); socket.on('close', () => { console.log('Client disconnected'); }); socket.on('error', (err) => { console.error('Socket error:', err); }); }); const port = 25565; // Cổng mặc định của Minecraft server.listen(port, () => { console.log(`Server listening on port ${port}`); }); ``` 5. **Biên dịch và chạy:** * Chạy `tsc` để biên dịch mã TypeScript thành JavaScript (các file JavaScript sẽ được tạo trong thư mục `dist`). * Chạy máy chủ bằng `node dist/index.js`. **Lưu ý quan trọng:** * **Giao thức Minecraft phức tạp:** Giao thức Minecraft rất phức tạp và thay đổi theo từng phiên bản. Bạn sẽ cần tìm hiểu về giao thức để có thể xử lý các gói tin (packets) một cách chính xác. * **Bảo mật:** Khi xây dựng máy chủ Minecraft, hãy chú ý đến các vấn đề bảo mật để tránh các cuộc tấn công. * **Phiên bản Minecraft:** Chọn một phiên bản Minecraft cụ thể mà bạn muốn hỗ trợ và tìm hiểu về giao thức của phiên bản đó. * **Học hỏi từ các dự án khác:** Xem mã nguồn của các dự án máy chủ Minecraft mã nguồn mở khác có thể giúp bạn hiểu rõ hơn về cách hoạt động của chúng. **Các bước tiếp theo:** 1. **Tìm hiểu về giao thức Minecraft:** Bắt đầu bằng cách tìm hiểu về cách giao thức hoạt động, các loại gói tin, và cách mã hóa/giải mã chúng. 2. **Xử lý bắt tay (handshake):** Triển khai logic để xử lý quá trình bắt tay khi client kết nối. 3. **Xử lý đăng nhập:** Triển khai logic để xử lý quá trình đăng nhập của người chơi. 4. **Gửi dữ liệu thế giới:** Tìm hiểu cách gửi dữ liệu về thế giới (chunks) cho client. 5. **Xử lý di chuyển của người chơi:** Triển khai logic để theo dõi và xử lý di chuyển của người chơi. 6. **Xử lý chat:** Triển khai logic để xử lý tin nhắn chat. Chúc bạn thành công! Đây là một dự án khá phức tạp, nhưng nó sẽ là một trải nghiệm học tập tuyệt vời. Hãy bắt đầu từ những bước đơn giản và dần dần xây dựng các tính năng phức tạp hơn.

Kali Linux MCP Server

Kali Linux MCP Server

Một công cụ cho phép kiểm thử xâm nhập thông qua các lệnh Kali Linux được thực thi thông qua một máy chủ Giao thức Đa Hội thoại (Multi-Conversation Protocol), hỗ trợ các hoạt động kiểm tra bảo mật như tấn công SQL injection và thực thi lệnh.

mcp-brain

mcp-brain

A Model Context Protocol server that gives Claude Code persistent, structured awareness of your project — without burning tokens on context rebuilding.

cBioPortal MCP Server

cBioPortal MCP Server

A server that enables AI assistants to interact with cancer genomics data from cBioPortal, allowing users to explore cancer studies, access genomic data, and retrieve mutations and clinical information.

Rosbridge MCP Server

Rosbridge MCP Server

A Model Context Protocol server that provides tools to publish messages to ROS topics via rosbridge WebSocket, enabling integration between language models and ROS-based robotics systems.

Firestore MCP Server

Firestore MCP Server

Enables AI assistants to interact with Firebase Firestore databases through full CRUD operations, collection management, and advanced query support. It features automatic type conversion for Firestore-specific data and tools for counting or filtering documents.

local-apple-data

local-apple-data

MCP server for privacy-gated local Apple data access including Mail, Messages, Notes, Calendar, Contacts, Photos, Reminders, Voice Memos, and iCloud Drive.

MCPGTCG

MCPGTCG

An MCP server for the Genius Invokation TCG simulator that allows AI models to interact with the game through a structured interface. It provides comprehensive tools for querying game states, accessing indexed card data, and executing gameplay actions like elemental tuning and character selection.

mcp-doaj

mcp-doaj

Enables searching and retrieving open-access journals and articles from the Directory of Open Access Journals.

tesseract-26-eyeshot-mcp

tesseract-26-eyeshot-mcp

Enables AI-driven CAD operations through natural language, integrating LLM and Eyeshot SDK for model manipulation.

gandi-mcp

gandi-mcp

Production-grade MCP server for the Gandi v5 API, enabling domain, DNS, email, billing, organization, and certificate management through natural language with a three-tier safety model.

Windows Calculator MCP Server

Windows Calculator MCP Server

Connects Claude Desktop to Windows Calculator, enabling accurate mathematical calculations using Windows' native PowerShell calculation engine.

Paper Search Mcp

Paper Search Mcp