Discover Awesome MCP Servers
Extend your agent with 23,714 capabilities via MCP servers.
- All23,714
- 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
CCXT MCP Server
鏡 (Kagami)
IDA-MCP
Enables interaction with multiple IDA Pro instances through MCP, allowing users to list functions, search instances, and manage reverse engineering analysis across different binary files. Supports multi-instance coordination with automatic discovery and tool forwarding between IDA Pro sessions.
Spreadsheet MCP Server
LLM が Google スプレッドシートのデータに直接アクセスして操作できるようにする、Model Context Protocol (MCP) サーバーを提供します。
MCP Quoting System
Intelligently generates cost estimates and lead times for manufacturing RFPs by parsing requests, matching against historical quotes, and calculating activity-based costs with confidence scoring and human approval workflows.
MCP - Model Context Protocol TypeScript SDK
A TypeScript wrapper library for the Model Context Protocol SDK that provides a simplified interface for creating MCP servers with tools, resources, and prompts without needing to work directly with the protocol.
Local MCP Server
Provides 18 tools including calculator operations (add, subtract, multiply, divide, power, sqrt, log, trigonometric functions) and secure sandboxed file operations (read, write, append, delete, list) for LangGraph agents and MCP clients. Features async support, YAML configuration, comprehensive logging, and path traversal protection.
Knowledge Retrieval Server
A BM25-based MCP server that enables document search and retrieval across structured domains of knowledge content, allowing Claude to search and reference documentation when answering questions.
Software Planning Tool
Model Context Protocol を通じて、タスクの管理、進捗の追跡、詳細な実装計画の作成を行い、インタラクティブなソフトウェア開発計画を促進します。
MCP Server Template for Cursor IDE
了解しました。以下に、Model Context Protocol を使用してカスタムツールを Cursor IDE に接続するためのテンプレートを、陽気なサーバー応答のサポート付きで示します。 ```python # 必要なライブラリをインポートします import json from http.server import BaseHTTPRequestHandler, HTTPServer from typing import Dict, Any # ツール固有のロジックを実装します def my_tool_function(input_data: Dict[str, Any]) -> Dict[str, Any]: """ これはあなたのカスタムツールのロジックが実行される場所です。 """ # ここでツール固有の処理を行います # 例:入力データを処理して結果を生成する result = {"message": f"ツールが正常に実行されました! 入力データ: {input_data}"} return result # HTTP リクエストを処理するハンドラを定義します class RequestHandler(BaseHTTPRequestHandler): def _set_response(self, status_code: int = 200, content_type: str = "application/json"): """ HTTP レスポンスヘッダーを設定します。 """ self.send_response(status_code) self.send_header("Content-type", content_type) self.end_headers() def do_POST(self): """ POST リクエストを処理します。 """ content_length = int(self.headers["Content-Length"]) post_data = self.rfile.read(content_length) try: # JSON データを解析します request_data = json.loads(post_data.decode("utf-8")) # ツール関数を呼び出します tool_response = my_tool_function(request_data) # 陽気な応答を追加します tool_response["status"] = "success! 😄" tool_response["message"] = tool_response.get("message", "") + " 素晴らしい結果です! 🎉" # JSON 形式で応答を送信します response_data = json.dumps(tool_response) self._set_response(200) self.wfile.write(response_data.encode("utf-8")) except Exception as e: # エラー処理 error_message = {"error": str(e), "status": "error 😞"} response_data = json.dumps(error_message) self._set_response(500) self.wfile.write(response_data.encode("utf-8")) def run(server_class=HTTPServer, handler_class=RequestHandler, port=8000): """ サーバーを起動します。 """ server_address = ("", port) httpd = server_class(server_address, handler_class) print(f"サーバーがポート {port} で起動しました... 🚀") try: httpd.serve_forever() except KeyboardInterrupt: pass httpd.server_close() print("サーバーが停止しました。") if __name__ == "__main__": run() ``` **このテンプレートの使い方:** 1. **`my_tool_function` を実装:** `my_tool_function` 関数を、あなたのカスタムツールのロジックで置き換えます。この関数は、Cursor IDE から送信された JSON データを入力として受け取り、JSON 形式の結果を返します。 2. **ポートを設定:** `run()` 関数内の `port` 変数を、使用したいポート番号に変更します。 3. **サーバーを起動:** スクリプトを実行してサーバーを起動します。 4. **Cursor IDE でツールを構成:** Cursor IDE で、Model Context Protocol を使用して、このサーバーのエンドポイント (例: `http://localhost:8000`) を指すようにツールを構成します。 **重要なポイント:** * **エラー処理:** エラーが発生した場合、適切なエラーメッセージを JSON 形式で返します。 * **セキュリティ:** 本番環境で使用する場合は、セキュリティ対策 (認証、認可など) を必ず実装してください。 * **Model Context Protocol:** Cursor IDE のドキュメントを参照して、Model Context Protocol の詳細を理解してください。 * **陽気な応答:** `tool_response["status"]` と `tool_response["message"]` に、陽気なメッセージを追加して、ユーザーエクスペリエンスを向上させます。 **Cursor IDE でのツールの構成例:** Cursor IDE の設定で、以下のようにツールを構成します。 * **Name:** My Custom Tool * **Description:** A tool that does something amazing! * **Endpoint:** `http://localhost:8000` * **Protocol:** Model Context Protocol このテンプレートは、カスタムツールを Cursor IDE に接続するための出発点として使用できます。必要に応じて、ロギング、認証、その他の機能を追加して、ツールを拡張してください。 この情報がお役に立てば幸いです!
Workers + Stytch TODO App MCP Server
A Cloudflare Workers server that extends a traditional full-stack TODO application with Model Context Protocol support, enabling AI agents to interact with the app through Stytch authentication.
Emoji Storyteller MCP Server
Generates entertaining stories told entirely through emojis with adjustable chaos levels, themed narratives, and a maximum chaos mode. Perfect for creating delightful emoji-based tales across adventure, romance, horror, space, food, and party themes.
MkDocs MCP Search Server
Enables Claude and other LLMs to search through any published MkDocs documentation site using the Lunr.js search engine, allowing the AI to find and summarize relevant documentation for users.
MCP Tekmetric
A Model Context Protocol server that allows AI assistants to interact with Tekmetric data, enabling users to query appointment details, vehicle information, repair order status, and parts inventory through natural language.
BioPython MCP Server
Provides comprehensive BioPython capabilities for biological sequence analysis, alignment, database access (GenBank, UniProt, PubMed), protein structure analysis, and phylogenetics through a Model Context Protocol interface for AI-assisted bioinformatics workflows.
Testomatio MCP Server
A Model Context Protocol server that enables AI assistants like Cursor to interact with Testomatio test management platform, allowing users to query test cases, runs, and plans through natural language.
MCP-Dandan
Real-time security framework for MCP servers that detects and blocks malicious AI agent behavior by analyzing tool call patterns and intent across multiple threat detection engines.
Aiven MCP Server
Aivenサービス(PostgreSQL、Kafka、ClickHouse、Valkey、OpenSearch)へのアクセスを提供するモデルコンテキストプロトコルサーバー。LLMがこれらのサービスと連携することで、フルスタックソリューションを構築できるようになります。
godoc-mcp
godoc-mcp is a Model Context Protocol (MCP) server that provides efficient access to Go documentation. It helps LLMs understand Go projects by providing direct access to package documentation without needing to read entire source files.
Salesforce CLI Connect MCP
Provides a user-friendly setup wizard that guides users through connecting Claude Desktop to Salesforce via secure OAuth authentication using the Salesforce CLI, requiring no technical knowledge or manual credential management.
IMDB MCP Server
Provides access to IMDB movie and person data, including searches, cast details, and top-rated lists through the Model Context Protocol. It enables LLMs to fetch structured cinematic metadata and filmographies using the Cinemagoer backend.
MCP Câmara BR
Enables interaction with the Brazilian Chamber of Deputies Open Data API, providing access to information about legislators, legislative proposals, voting records, events, committees, and parliamentary activities through 57 typed and validated tools.
Claude Web Scraper MCP
これは、eGetウェブスクレイパーとClaude for Desktopを統合したシンプルなMCPサーバーです。このコネクターにより、ClaudeはローカルのeGet APIを通じてウェブコンテンツをスクレイピングできるようになり、会話の中で直接ウェブサイトの検索、要約、分析が可能になります。
OpenF1 MCP Server
Enables access to Formula 1 data from the openF1.org API, including driver information, race results, lap times, telemetry, pit stops, weather conditions, and live position data across multiple seasons.
Boxtalk Data MCP Server
Provides tools for interacting with SQL Server databases, enabling users to retrieve paginated table data, inspect schemas, and count records. It features enforced pagination and secure configuration options to manage database operations efficiently through natural language.
Axiom MCP Server
Axiom のためのモデルコンテキストプロトコルサーバー実装。これにより、AIエージェントは Axiom Processing Language (APL) を使用してあなたのデータをクエリできます。
GitHub MCP Bridge
A Model Context Protocol server that enables AI agents to securely access and interact with GitHub Enterprise data, providing access to enterprise users, organizations, emails, and license information.
Nucleus MCP
Nucleus MCP provides a local, unified memory layer that synchronizes context and decisions across different AI tools like Cursor, Claude Desktop, and Windsurf. It enables cross-platform state management and persistent knowledge storage using a shared local brain.
lyxamour-mcp
A comprehensive Python MCP server with built-in knowledge base (SQLite + FTS5), web management interface, and flexible tool grouping system. Supports multiple transport protocols (stdio, SSE, HTTP Stream) with zero external dependencies.
Ressl MCP
Enables searching for keywords within files with case-sensitive/insensitive options, returning matching lines with line numbers for easy reference.
Threat Intelligence MCP Server
Aggregates real-time threat intelligence from multiple sources including Feodo Tracker, URLhaus, CISA KEV, and ThreatFox, with IP/hash reputation checking via VirusTotal, AbuseIPDB, and Shodan for comprehensive security monitoring.