Discover Awesome MCP Servers

Extend your agent with 72,663 capabilities via MCP servers.

All72,663
Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

op-injection-scanner

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

SEOSiri API Guard MCP Server

A sovereign, universal API validation and multi-industry compliance security MCP server.

mingtu-ai

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

Slack MCP Server

Gives AI agents full Slack access via session tokens, requiring no app registration, admin approval, or OAuth.

ctx4-ai

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

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

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

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

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

mcp-walmart

Enables AI agents to search products, manage cart, and track orders on Walmart.com via browser automation.

MCP Goose Subagents Server

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

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

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

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

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

My MCP

TO DO microsoft

suno-mcp

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

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

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

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 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 서버 - 실시간 교통 정보, 대중교통, 따릉이 등의 데이터를 제공하는 MCP 서버

CloakBrowser MCP Server

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

youtube-mcp

MCP server for YouTube Data API v3 enabling video search, channel lookup, trending content, comments, and playlist management.

opsgenie-mcp

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

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

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

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

polymarket-mcp

Enables querying Polymarket prediction market data, including top active markets and order books, without an API key or database.