Discover Awesome MCP Servers

Extend your agent with 20,402 capabilities via MCP servers.

All20,402
OPC UA MCP Server

OPC UA MCP Server

OPC UA 対応の産業オートメーションシステムに接続する MCP サーバー

MCP Community Portal

MCP Community Portal

Docker Model Context Protocol (MCP) サーバー、ツール、およびリソースの、現代的でコミュニティ主導のコレクションです。

Pieces MCP Net

Pieces MCP Net

Pieces LTMと連携するためのMCPサーバー

google-cloud-healthcare-api-mcp

google-cloud-healthcare-api-mcp

MCP Server for Google Cloud Healthcare APIは、ヘルスシステム向けのよりスマートな臨床ワークフローから、保険者向けの事前承認フレームワークまで、さまざまなFHIRベースのデジタルヘルスソリューション向けのエージェント型AIを可能にします!

Google Workspace MCP Server

Google Workspace MCP Server

鏡 (Kagami)

WebSocket MCP

WebSocket MCP

カスタム WebSocket トランスポート層を持つ Model Context Protocol (MCP) サーバーおよびクライアント。

Taskqueue

Taskqueue

構造化されたタスクキューを使って「Claude を飼いならす」ための MCP サーバー

Minecraft MCP Server

Minecraft MCP Server

鏡 (Kagami)

Ninja MCP Server

Ninja MCP Server

MCPサーバー向けのNinjaRMM APIの包括的な統合プラットフォーム

DevOps MCP Servers

DevOps MCP Servers

DevOpsツールと連携のためのMCPサーバー。a37チームによって作成、維持されています。

Unity MCP Server for Smithery.ai

Unity MCP Server for Smithery.ai

Unityゲーム開発用のモデルコンテキストプロトコル(MCP)サーバー。Smithery.aiにデプロイ可能。

Ableton Live MCP Server

Ableton Live MCP Server

Ableton Live の OSC コントロールのための MCP サーバー実装

PDF Search for Zed

PDF Search for Zed

Zed用のMCPサーバー拡張機能で、PDFファイルから関連する部分を取得するもの

LSP MCP

LSP MCP

LLM/AIエージェントに、言語サーバープロトコル (LSP) サーバーの機能を提供する、モデルコンテキストプロトコル (MCP) サーバー。これにより、AIはコードベースから言語を認識したコンテキストを取得できるようになります。

Metaplex MCP Server

Metaplex MCP Server

鏡 (Kagami)

Cline Notification Server

Cline Notification Server

MCP (presumably referring to a Minecraft server) から Telegram 経由で通知を送信する

mcp-server-sql-analyzer

mcp-server-sql-analyzer

SQL 静的解析のための MCP サーバー

mcp-golang

mcp-golang

Please provide the link to the documentation you are referring to. I need the documentation to understand the Model Context Protocol and write the Go code for the servers. Without the documentation, I can only provide a very generic example, which is unlikely to be what you need. For example, if I *assume* it's a simple request-response protocol over TCP, I could provide something like this: ```go package main import ( "fmt" "net" "os" ) func handleConnection(conn net.Conn) { defer conn.Close() buf := make([]byte, 1024) reqLen, err := conn.Read(buf) if err != nil { fmt.Println("Error reading:", err.Error()) return } request := string(buf[:reqLen]) fmt.Println("Received:", request) // Process the request (replace with actual Model Context Protocol logic) response := "Processed: " + request _, err = conn.Write([]byte(response)) if err != nil { fmt.Println("Error writing:", err.Error()) } } func main() { ln, err := net.Listen("tcp", ":8080") // Listen on port 8080 if err != nil { fmt.Println("Error listening:", err.Error()) os.Exit(1) } defer ln.Close() fmt.Println("Server listening on :8080") for { conn, err := ln.Accept() if err != nil { fmt.Println("Error accepting:", err.Error()) continue } go handleConnection(conn) } } ``` **Explanation (of the generic example):** 1. **`package main`**: Declares the package as `main`, making it an executable program. 2. **`import`**: Imports necessary packages: - `fmt`: For printing to the console. - `net`: For networking operations. - `os`: For exiting the program. 3. **`handleConnection(conn net.Conn)`**: This function handles each individual client connection. - `defer conn.Close()`: Ensures the connection is closed when the function exits. - `buf := make([]byte, 1024)`: Creates a buffer to read data from the connection. - `conn.Read(buf)`: Reads data from the connection into the buffer. - `request := string(buf[:reqLen])`: Converts the received bytes to a string. - `response := "Processed: " + request`: **Placeholder:** This is where you would implement the actual Model Context Protocol logic to process the request and generate a response. This example just prepends "Processed: " to the request. - `conn.Write([]byte(response))`: Sends the response back to the client. 4. **`main()`**: The main function of the program. - `net.Listen("tcp", ":8080")`: Creates a TCP listener on port 8080. - `defer ln.Close()`: Ensures the listener is closed when the program exits. - `for {}`: An infinite loop to accept incoming connections. - `conn, err := ln.Accept()`: Accepts a new connection. - `go handleConnection(conn)`: Starts a new goroutine to handle the connection concurrently. **To make this code useful, you MUST provide the documentation for the Model Context Protocol.** I need to know: * **What is the protocol?** (e.g., TCP, UDP, HTTP, gRPC, etc.) * **What is the message format?** (e.g., JSON, Protocol Buffers, plain text, binary format, etc.) * **What are the expected requests and responses?** * **What is the purpose of the protocol?** (What kind of data is being exchanged?) Once you provide the documentation, I can give you a much more accurate and helpful Go implementation.

MCP Web UI

MCP Web UI

MCP Web UIは、Model Context Protocol(MCP)アーキテクチャ内でホストとして機能する、ウェブベースのユーザーインターフェースです。クライアントとサーバー間のコンテキスト集約と連携を管理しながら、大規模言語モデル(LLM)と対話するための、強力でユーザーフレンドリーなインターフェースを提供します。

E-Book MCP Server with PDF Conversion

E-Book MCP Server with PDF Conversion

HTMLドキュメントをPDFに変換できるシンプルなMCPサーバー

Ubuntu SSH Docker Container

Ubuntu SSH Docker Container

MCP-RSS-Crawler

MCP-RSS-Crawler

MCPサーバーは、RSSフィードを取得し、それをLLM(大規模言語モデル)と共有することで、AIアシスタントが設定されたフィードから最新のニュースや記事にアクセスし、提示できるようにするものです。

Upbit MCP Server

Upbit MCP Server

Upbit暗号資産取引所のサービスと連携し、市場データの取得、アカウント管理、取引の実行を行います。注文管理、入出金、テクニカル分析のツールで、取引体験を簡素化します。

anki MCP server

anki MCP server

Anki MCPサーバー (Anki MCP sābā)

Substack MCP Server

Substack MCP Server

「Claudeとの連携のためのSubstack API統合用MCPサーバー」

Mcp Repo2llm Server

Mcp Repo2llm Server

GitHub、GitLab、またはローカルディレクトリにあるコードリポジトリを、コンテキストと構造を保持したまま、LLM(大規模言語モデル)フレンドリーな形式に変換するMCPサーバー。AI処理の向上に貢献します。

MCPE Alpha Server for Pterodactyl

MCPE Alpha Server for Pterodactyl

鏡 (Kagami)

MCP Calculate Server

MCP Calculate Server

MCPプロトコルを通じて、基本的な算術、代数、微積分、方程式の求解、行列演算などの記号計算をユーザーが行えるようにする数学計算サービス。

Clojars MCP Server

Clojars MCP Server

鏡 (Kagami)

FastMCP

FastMCP

MCPサーバーを構築するためのTypeScriptフレームワーク