Discover Awesome MCP Servers

Extend your agent with 23,553 capabilities via MCP servers.

All23,553
Todo App

Todo App

このアプリは、Box MCPサーバーを使ってPRD(製品要求仕様書)とコーディングガイドラインを見つけ、Cursorで完全に構築されました。

Azure MCP FastMCP Server

Azure MCP FastMCP Server

Provides Azure DevOps integration through MCP, enabling management of projects, work items, teams, and policies via natural language. Supports bulk work item creation with hierarchical relationships and iteration assignments.

Chronos MCP Server

Chronos MCP Server

了解しました。以下に、現在時刻を取得するシンプルな .NET Core ベースの MCP (Minecraft Protocol) サーバーの例を示します。 ```csharp using System; using System.Net; using System.Net.Sockets; using System.Text; namespace SimpleMcpServer { class Program { static void Main(string[] args) { // ポート番号を設定 int port = 25565; // Minecraft のデフォルトポート // TCP リスナーを作成 TcpListener listener = new TcpListener(IPAddress.Any, port); // リスナーを開始 listener.Start(); Console.WriteLine($"MCP サーバーがポート {port} で起動しました。"); while (true) { // クライアント接続を待機 TcpClient client = listener.AcceptTcpClient(); Console.WriteLine("クライアントが接続しました。"); // クライアントとの通信を処理 HandleClient(client); } } static void HandleClient(TcpClient client) { try { // ネットワークストリームを取得 NetworkStream stream = client.GetStream(); // リクエストを読み込む (簡略化のため、ここでは単純な文字列を想定) byte[] buffer = new byte[1024]; int bytesRead = stream.Read(buffer, 0, buffer.Length); string request = Encoding.UTF8.GetString(buffer, 0, bytesRead); Console.WriteLine($"受信したリクエスト: {request}"); // 現在時刻を取得 string currentTime = DateTime.Now.ToString(); // レスポンスを作成 string response = $"現在時刻: {currentTime}"; byte[] responseBytes = Encoding.UTF8.GetBytes(response); // レスポンスを送信 stream.Write(responseBytes, 0, responseBytes.Length); Console.WriteLine($"レスポンスを送信: {response}"); } catch (Exception ex) { Console.WriteLine($"エラーが発生しました: {ex.Message}"); } finally { // クライアントをクローズ client.Close(); Console.WriteLine("クライアント接続を閉じました。"); } } } } ``` **コードの説明:** 1. **名前空間:** `SimpleMcpServer` という名前空間でコードを整理しています。 2. **`Main` メソッド:** - ポート番号 (`port`) を設定します (デフォルトの Minecraft ポート 25565 を使用)。 - `TcpListener` を作成し、すべての IP アドレス (`IPAddress.Any`) で指定されたポートをリッスンするように設定します。 - `listener.Start()` でリスナーを開始し、クライアント接続を待ち受けます。 - 無限ループ (`while (true)`) でクライアント接続を継続的に受け入れます。 - `listener.AcceptTcpClient()` でクライアント接続を受け入れ、`TcpClient` オブジェクトを取得します。 - `HandleClient(client)` メソッドを呼び出して、クライアントとの通信を処理します。 3. **`HandleClient` メソッド:** - `client.GetStream()` でネットワークストリームを取得します。 - `stream.Read()` でクライアントからのリクエストを読み込みます (ここでは単純な文字列を想定)。 - `Encoding.UTF8.GetString()` でバイト配列を文字列に変換します。 - `DateTime.Now.ToString()` で現在の時刻を取得します。 - レスポンス文字列を作成し、`Encoding.UTF8.GetBytes()` でバイト配列に変換します。 - `stream.Write()` でレスポンスをクライアントに送信します。 - `client.Close()` でクライアント接続を閉じます。 - `try-catch-finally` ブロックを使用して、エラー処理とリソースのクリーンアップを行います。 **使い方:** 1. **.NET Core プロジェクトの作成:** ```bash dotnet new console -o SimpleMcpServer cd SimpleMcpServer ``` 2. **上記のコードを `Program.cs` ファイルにコピーします。** 3. **実行:** ```bash dotnet run ``` **テスト方法:** 1. **Telnet クライアントを使用:** ```bash telnet localhost 25565 ``` 接続後、何か文字列を入力して Enter キーを押すと、サーバーから現在時刻が返ってきます。 2. **自作の Minecraft クライアントを使用:** - Minecraft プロトコルに従って、サーバーに接続し、リクエストを送信するクライアントを作成する必要があります。 この例では、単純な文字列リクエストを想定しているため、Minecraft プロトコルのハンドシェイクやログイン処理は実装されていません。 **注意点:** * **セキュリティ:** このコードは非常に基本的なものであり、セキュリティ対策は一切施されていません。 本番環境で使用する場合は、認証、暗号化、入力検証などのセキュリティ対策を必ず実装してください。 * **Minecraft プロトコル:** このコードは、Minecraft プロトコルを完全に実装しているわけではありません。 単純な文字列リクエストとレスポンスを処理するだけのものです。 より複雑な Minecraft サーバーを構築する場合は、Minecraft プロトコルの詳細を理解し、適切に実装する必要があります。 * **エラー処理:** エラー処理は最小限に抑えられています。 より堅牢なサーバーを構築する場合は、より詳細なエラー処理を実装する必要があります。 * **スレッド:** このコードはシングルスレッドで動作します。 複数のクライアントからの同時接続を処理する場合は、マルチスレッドまたは非同期処理を実装する必要があります。 この例は、.NET Core でシンプルな MCP サーバーを構築するための出発点として役立つはずです。 必要に応じて、このコードを拡張して、より複雑な機能を追加できます。

Tennis Warehouse MCP Server

Tennis Warehouse MCP Server

Provides secure access to Tennis Warehouse product data, enabling users to search for tennis equipment (racquets, bags, shoes), check product availability, find deals, and browse categories through natural language queries while protecting internal API details.

JR East Delay Information MCP Server

JR East Delay Information MCP Server

An MCP server that provides real-time delay information for JR East train lines, accessible via MCP clients like Claude Desktop through the 'getDelays' tool.

Magento 2 GraphQL Documentation MCP Server

Magento 2 GraphQL Documentation MCP Server

Provides offline search and retrieval of Magento 2 GraphQL API documentation with 8 specialized tools for finding queries, mutations, types, tutorials, and code examples across 350+ locally indexed markdown files.

DevServer MCP

DevServer MCP

Monitors development server logs in real-time and provides Claude with immediate error notifications via Server-Sent Events. Intelligently parses TypeScript, Svelte, and Vite errors with severity classification and file correlation.

Remote MCP Server (Authless)

Remote MCP Server (Authless)

A template for deploying an unauthenticated remote MCP server on Cloudflare Workers. Allows users to create custom tools accessible via SSE endpoints and connect them to MCP clients like Claude Desktop or Cloudflare AI Playground.

Zapiar_MCP_Server

Zapiar_MCP_Server

Restaurant Reservation MCP Server

Restaurant Reservation MCP Server

Enables users to search, check availability, and book restaurant reservations across Resy and OpenTable platforms. It supports direct booking for Resy and includes an automated reservation 'sniper' for securing high-demand slots the moment they become available.

CDC MCP Server

CDC MCP Server

Provides access to 73 CDC public health datasets covering disease surveillance, vaccination tracking, behavioral risk factors, environmental health, and outbreak detection across 18 surveillance systems through the Socrata Open Data API.

Splunkbase MCP Server

Splunkbase MCP Server

Splunkbaseの機能へのプログラム的なアクセスを提供するMachine Control Protocolサーバー。標準化されたインターフェースを通じて、ユーザーがSplunkbaseアプリの検索、ダウンロード、管理を行えるようにする。

MCP-Booster

MCP-Booster

Provides AI-powered development assistance with continuous chain-of-thought reasoning (CoConuT), automated task planning and execution, quality validation, and persistent memory of project context and decisions.

how to run both the client and server

how to run both the client and server

MCP (Metaverse Communication Protocol)クライアントとサーバーを実験するためのリポジトリ

code2mcp

code2mcp

Enables execution of TypeScript code to call MCP tools instead of direct tool calls, reducing token usage by up to 98% while orchestrating complex multi-tool workflows through secure sandboxed code execution.

Artificial Virtual Assistant (AVA)

Artificial Virtual Assistant (AVA)

An MCP server that provides AI applications with a toolset for an Artificial Virtual Assistant (AVA) integrated with the Gmail API. It enables users to automate email management and personal tasks through secure Google OAuth authentication.

SAP AI Core Documentation MCP Server

SAP AI Core Documentation MCP Server

Provides semantic search and intelligent access to SAP AI Core documentation for AI assistants like Claude. It enables users to search across categories, retrieve full document content, and access topic-specific information from the SAP artificial intelligence repository.

MCP Server Template

MCP Server Template

A comprehensive template for building Model Context Protocol servers with FastMCP framework, featuring modular architecture, auto-discovery registry, and support for multiple transport methods. Includes example arithmetic and weather tools to help developers quickly create custom MCP servers.

agnt

agnt

Bridges AI coding agents with the browser to provide visual debugging, real-time error capture, screenshot capabilities, DOM inspection, and interactive wireframing through a reverse proxy with injected developer tools.

MCP Server with SSE

MCP Server with SSE

Enables real-time data streaming through Server-Sent Events with timestamp broadcasting and server monitoring capabilities. Optimized for deployment on Render.com with health checks and status endpoints.

PostgreSQL MCP Server (Cloudflare Worker)

PostgreSQL MCP Server (Cloudflare Worker)

A Model Context Protocol server deployed on Cloudflare Workers that enables interaction with PostgreSQL databases. It allows AI clients like Claude and Cursor to execute database operations via a remote SSE connection.

Parallel-Poke MCP

Parallel-Poke MCP

Bridges Parallel's Monitor API with Poke to receive SMS notifications when web monitors detect changes and conversationally create/manage monitors through text messages.

MCP n8n API Server

MCP n8n API Server

n8n API連携用MCPサーバー - Claude AIをn8nワークフローに接続

GitHub Copilot Usage MCP Server

GitHub Copilot Usage MCP Server

An MCP server that retrieves current GitHub Copilot usage data, including quotas, limits, and usage statistics. It allows AI agents to monitor premium interaction status and detailed account usage via raw or formatted summaries.

BlenderMCP

BlenderMCP

Enables Claude Desktop to control Blender 5.0.1 on Windows for tasks such as creating 3D objects, executing Python scripts, and rendering scenes. It allows users to manage Blender's environment and perform 3D modeling operations using natural language commands.

App Market Intelligence

App Market Intelligence

Apple App StoreとGoogle Play Store両方のデータを分析し、包括的な市場インテリジェンスを提供するMCPサーバー。ユーザーは、モバイルマーケットプレイス全体で、アプリのリサーチ、市場動向の追跡、競合調査、ユーザーフィードバックの理解を行うことができます。

PubMed MCP

PubMed MCP

Enables searching and retrieving academic article metadata from PubMed through a simple HTTP interface. Provides curated article summaries including titles, authors, publication dates, and DOIs for research and academic content discovery.

CtrlTest MCP Server

CtrlTest MCP Server

Enables control system analysis and testing through PID controller evaluation against second-order plants. Provides regression testing utilities with step response analysis, gust rejection metrics, and settling time calculations for control engineering applications.

Woodpecker CI Pipeline Analyzer

Woodpecker CI Pipeline Analyzer

Enables automated analysis of Woodpecker CI pipeline failures with intelligent error detection and fix suggestions. Supports both direct pipeline analysis and IDE-integrated git-context analysis using repository names, PR numbers, or branch information.

Google Calendar MCP Server

Google Calendar MCP Server