Discover Awesome MCP Servers
Extend your agent with 78,828 capabilities via MCP servers.
- All78,828
- 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
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.
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.
NitroStack
A Python framework for building MCP servers with modular architecture, dependency injection, and built-in authentication. Enables creating scalable, testable MCP services with features like pipeline interceptors and background tasks.
API Testing MCP
A full-stack API automation testing server that parses OpenAPI/Swagger/Postman/HAR specs, generates comprehensive test scenarios and executable code, and provides AI-powered review and auto-fix.
mcptut1
MCPサーバーとクライアントのチュートリアル
MCP Installer
MCPサーバーを検索するMCPサーバー
edi-mcp
Let AI agents read, validate and acknowledge EDI documents. Parses raw X12 and EDIFACT interchanges into structured JSON, validates envelope integrity, produces plain-language summaries, and generates 997 Functional Acknowledgments.
claude-oracle-mcp
An MCP server for discovering Claude Code skills, plugins, and MCP servers by searching 15,000+ resources from 17 registries, GitHub, and the web with zero setup.
GPT Image MCP Server
An MCP server that enables text-to-image generation and editing using OpenAI's gpt-image-1 model, supporting multiple output formats, quality settings, and background options.
op-injection-scanner
An MCP server for prompt injection boundary enforcement that scans URL content using a tiered LLM model strategy.
cvrlookup-mcp
Remote MCP server for the Danish company register (CVR): company lookup, name search, and parsed annual-report financials as structured JSON for 860,000+ active Danish companies.
MCP Java Backend Suite
A comprehensive MCP toolkit for Java backend developers, providing 35 tools across 5 servers for database analysis, JVM diagnostics, migration assistance, Spring Boot monitoring, and Redis diagnostics.
git-log-mcp
Enables querying git commit history to analyze when and why code changes happened, providing authorship context and diffs for specific modules.
ProductLane MCP Server
Provides AI assistants with access to ProductLane support threads, contacts, changelogs, and documentation through a set of MCP tools.
cinii-mcp
Enables querying Japan's national academic database, CiNii Research, for articles, books, dissertations, KAKEN projects, and researcher profiles via seven MCP tools.
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.
@omnidim-ai/mcp-server
Local stdio Model Context Protocol server for OmniDimension. Drive voice agents, dispatch calls, and manage knowledge bases from Claude, Cursor, Windsurf, or any MCP-compatible client.
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 서버
Ledgent
Ledgent is a secure agentic integration layer that exposes Salesforce and billing operations as MCP tools. It enforces action-level authorization, idempotency, PII tokenization, and full audit logging, enabling AI agents to safely perform writes with human approval for high-risk actions.
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.
Corpus MCP Server
Enables AI assistants to securely interact with the Corpus Tracker application to manage financial portfolios and analyze net worth. It provides tools for tracking stock and gold holdings, logging transactions, and generating cash flow trends.
My MCP
TO DO microsoft
Highrise MCP Server by CData
This read-only MCP Server allows you to connect to Highrise data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/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.
Nuclino MCP Server
Provides access to Nuclino content through structured search and retrieval tools.
mcpManager
A desktop app and local MCP gateway that centralizes management of Claude/Codex configurations and provides unified access to Daytona sandbox and Tailscale networking operations through a single proxy entry point.
Cheap Research
A bounded evidence review engine that ingests documents, extracts evidence for a given claim, detects contradictions, and produces auditable evidence packets without hallucinations or open-web research.