Discover Awesome MCP Servers
Extend your agent with 72,663 capabilities via MCP servers.
- All72,663
- 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
Remote MCP Server on Cloudflare
op-injection-scanner
An MCP server for prompt injection boundary enforcement that scans URL content using a tiered LLM model strategy.
SEOSiri API Guard MCP Server
A sovereign, universal API validation and multi-industry compliance security MCP server.
mingtu-ai
An AI apprentice system that allows users to train AI through demonstration, correction, and review, with structured task execution and emphasis on packaging design workflow.
Slack MCP Server
Gives AI agents full Slack access via session tokens, requiring no app registration, admin approval, or OAuth.
ctx4-ai
MCP server for portable context management across AI assistants, providing tools to store and retrieve persistent context, instructions, and execute sandboxed bash commands with automatic git commits, using OAuth 2.1 and magic link authentication.
mcp-marine
Provides access to marine weather data from Open-Meteo's free API through natural language queries via Pipeworx MCP gateway.
Mapify MCP Server
Enables AI assistants to generate interactive mind maps from text, YouTube videos, and web content using Mapify's API.
CloudForge MCP Server
Enables AI assistants to visualize cloud architecture diagrams, generate and import Terraform HCL, and manage infrastructure resources directly from chat through the CloudForge platform.
Deepgram Async MCP Server
Enables asynchronous transcription of long audio and video files using Deepgram's Speech-to-Text API with features like speaker diarization, sentiment analysis, topic detection, and summarization without timeout issues.
mcp-walmart
Enables AI agents to search products, manage cart, and track orders on Walmart.com via browser automation.
MCP Goose Subagents Server
An MCP server that enables AI clients to delegate tasks to autonomous developer teams using Goose CLI subagents, supporting parallel or sequential execution of specialized agents for different development roles.
tinypilot-mcp
MCP server that exposes fleet-aware KVM primitives for AI agents to control TinyPilot devices, including screen capture, keyboard input, mouse events, and device selection.
actual-mcp
Enables agents to read and edit budgets in Actual Budget via natural language, with a safety layer that requires confirmation for destructive actions.
Kiwix Wiki MCP Server
Provides access to offline Wikipedia and other content through Kiwix, enabling search and retrieval of articles from local ZIM files.
pm4py-mcp
An MCP server that wraps PM4Py to bring research-grade process mining (event log analysis, discovery, conformance, OCEL 2.0) to Claude and other MCP agents, fully locally.
My MCP
TO DO microsoft
suno-mcp
A RunAPI MCP server for the Suno music generation models, enabling task creation (text-to-music, covers, mashups, etc.), polling, and pricing lookup through a single API key.
notebooklm-mcp-multiprofile
Enables AI agents to manage Google NotebookLM notebooks, sources, and generate podcasts/videos through the MCP protocol, with support for multiple Google accounts.
TimeVerse Code Reader
A read-only MCP server for code reading with intelligent caching, line-range selection, and language detection, enabling AI assistants to efficiently and safely explore file systems.
YouTube MCP Server
Enables AI agents to extract YouTube video metadata and generate high-quality multilingual transcriptions with voice activity detection, supporting 99 languages with translation capabilities and intelligent caching.
MCP TS Quickstart
承知いたしました。MCPサーバー実装のための、ビルド不要なTypeScriptクイックスタートについて説明します。 **タイトル: ビルド不要!TypeScriptで始めるMCPサーバー実装クイックスタート** **概要:** このクイックスタートでは、TypeScriptでMCP (Minecraft Protocol) サーバーを実装するための、最もシンプルな方法を紹介します。ビルドツール (webpack, Parcel, etc.) を使用せずに、TypeScriptの`ts-node`を使って直接実行することで、迅速に開発を始めることができます。 **前提条件:** * Node.js (最新のLTS推奨) * npm (Node.jsに付属) * TypeScript (`npm install -g typescript`) * ts-node (`npm install -g ts-node`) **手順:** 1. **プロジェクトディレクトリの作成:** ```bash mkdir mcp-server cd mcp-server ``` 2. **`package.json`の初期化:** ```bash npm init -y ``` 3. **TypeScriptのインストール (開発依存):** ```bash npm install --save-dev typescript @types/node ``` 4. **`tsconfig.json`の作成:** ```bash npx tsc --init ``` `tsconfig.json`を編集して、`compilerOptions`を以下のように設定します (必要に応じて調整): ```json { "compilerOptions": { "target": "es2020", "module": "commonjs", "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true, "outDir": "./dist" // ビルドする場合は出力先を指定 }, "include": ["src/**/*"] // TypeScriptファイルをコンパイルするディレクトリ } ``` **注意:** ビルドレスで実行する場合は、`outDir`は不要です。 5. **ソースコードディレクトリの作成:** ```bash mkdir src ``` 6. **サーバーのメインファイル (`src/index.ts`) の作成:** ```typescript // src/index.ts import net from 'net'; const server = net.createServer((socket) => { console.log('Client connected:', socket.remoteAddress, socket.remotePort); socket.on('data', (data) => { console.log('Received data:', data); // ここでMCPのパケットを処理する socket.write('Hello from server!\n'); // 例: クライアントにメッセージを返す }); socket.on('end', () => { console.log('Client disconnected:', socket.remoteAddress, socket.remotePort); }); socket.on('error', (err) => { console.error('Socket error:', err); }); }); const port = 25565; // Minecraftのデフォルトポート server.listen(port, () => { console.log(`Server listening on port ${port}`); }); ``` 7. **実行スクリプトの追加:** `package.json`の`scripts`セクションに、以下の行を追加します。 ```json "scripts": { "start": "ts-node src/index.ts" } ``` 8. **サーバーの実行:** ```bash npm start ``` これで、`ts-node`を使って`src/index.ts`が直接実行されます。 **解説:** * `ts-node`は、TypeScriptファイルをコンパイルせずに直接実行できるツールです。開発中に非常に便利です。 * `net`モジュールは、TCPサーバーを作成するために使用されます。 * `socket.on('data', ...)`で、クライアントから送信されたデータを受信し、処理します。 * `socket.write(...)`で、クライアントにデータを送信します。 **次のステップ:** * MCPプロトコルの詳細を理解し、`socket.on('data', ...)`内で適切なパケット処理を実装します。 * Minecraftクライアントからサーバーに接続し、データの送受信をテストします。 * 必要に応じて、ロギング、エラー処理、設定管理などの機能を追加します。 * より大規模なプロジェクトでは、ビルドツール (webpack, Parcel, etc.) を使用して、コードを最適化し、バンドルすることを検討してください。 **注意点:** * このクイックスタートは、開発の初期段階を迅速に進めるためのものです。 * 本番環境では、ビルドツールを使用してコードを最適化し、難読化することを推奨します。 * MCPプロトコルは複雑であるため、詳細なドキュメントを参照してください。 このクイックスタートが、MCPサーバー実装の第一歩となることを願っています。頑張ってください!
서울시 교통 데이터 MCP 서버
서울시 교통 데이터 MCP 서버 - 실시간 교통 정보, 대중교통, 따릉이 등의 데이터를 제공하는 MCP 서버
CloakBrowser MCP Server
A stealth browser automation MCP server that wraps CloakBrowser's patched Chromium to bypass bot detection, providing 22 tools for web navigation, interaction, and session management.
youtube-mcp
MCP server for YouTube Data API v3 enabling video search, channel lookup, trending content, comments, and playlist management.
opsgenie-mcp
MCP server for Opsgenie (Atlassian's incident/alert management and on-call platform) exposing the full public Opsgenie REST API as MCP tools.
TMS Development Wizard
Enables rapid exploration and integration of Omelet's Routing Engine and iNavi's Maps API for building Transport Management Systems, providing endpoint discovery, schema exploration, integration patterns, and troubleshooting guides.
ClickUp MCP Server
Provides integration with ClickUp's API, allowing you to retrieve task information and manage ClickUp data through MCP-compatible clients.
T5Chem MCP Server
Enables chemical reaction predictions (retrosynthesis, product, reagents), molecule validation, and property calculation through the Model Context Protocol, integrating with AI assistants.
polymarket-mcp
Enables querying Polymarket prediction market data, including top active markets and order books, without an API key or database.