Discover Awesome MCP Servers

Extend your agent with 30,614 capabilities via MCP servers.

All30,614
Cline Notification Server

Cline Notification Server

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

Dida365 MCP Server

Dida365 MCP Server

Dida365.com のための MCP サーバー

Nature Remo MCP server

Nature Remo MCP server

📱 MCP Server for iOS Simulator

📱 MCP Server for iOS Simulator

iOSシミュレーターとModel Context Protocol間の橋渡しを行い、標準化された通信インターフェースを通じてiOSシミュレーターのプログラム制御を可能にするもの。

Lamda

Lamda

🤖 最も強力なAndroid RPAフレームワーク、次世代のモバイル自動化ロボット。

File Context Server

File Context Server

鏡 (Kagami)

AppTweak MCP Server

AppTweak MCP Server

AppTweak MCP サーバー(Cline用) - アプリストア分析と競合分析のためのツールを提供します。

MCP Gateway, Server, and Client

MCP Gateway, Server, and Client

鏡 (Kagami)

Minesweeper MCP Server

Minesweeper MCP Server

ClaudeのようなAIエージェントが自然言語でのやり取りを通じてマインスイーパーをプレイできるようにするMCPサーバー。別のマインスイーパーゲームサーバーに接続します。

AI Chat Desktop Applications

AI Chat Desktop Applications

様々なAIチャットプラットフォーム向けのElectronベースのデスクトップアプリケーション

mcp-box

mcp-box

MCPサーバー用のmcp-box

MCP Template Node

MCP Template Node

Node.js/TypeScript で Model Context Protocol (MCP) サーバーを作成するためのテンプレートリポジトリです。このテンプレートは、LLM を活用したアプリケーションで使用できる MCP プロトコルを使用して、簡単なメモ管理システムを構築する方法を示しています。

cal2prompt

cal2prompt

✨ Googleカレンダーからスケジュールを取得し、それを単一のLLMプロンプトとして出力します(オプションでMCPサーバーモードも利用可能)。

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.

LSP MCP

LSP MCP

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

Puppeteer MCP Server

Puppeteer MCP Server

鏡 (Kagami)

Unity MCP Server for Smithery.ai

Unity MCP Server for Smithery.ai

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

MCP Calculate Server

MCP Calculate Server

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

PDF Search for Zed

PDF Search for Zed

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

Metaplex MCP Server

Metaplex MCP Server

鏡 (Kagami)

MCP Web UI

MCP Web UI

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

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ā)

E-Book MCP Server with PDF Conversion

E-Book MCP Server with PDF Conversion

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

MCP Inspector

MCP Inspector

MCPサーバー用のビジュアルテストツール

Ntfy MCP Server

Ntfy MCP Server

AIシステムがntfyのパブリッシュ/サブスクライブサービスを通じて、リアルタイム通知を携帯電話、デスクトップ、その他のデバイスに送信できるようにする、モデルコンテキストプロトコルサーバー。

FastMCP

FastMCP

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