Discover Awesome MCP Servers

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

All20,542
MCP Platform

MCP Platform

High-performance Model Context Protocol server supporting multiple LLM providers (OpenRouter, OpenAI, Groq) with WebSocket API and conversation history persistence.

notebooklm-mcp

notebooklm-mcp

Chat with Google NotebookLM via MCP or HTTP REST API for zero-hallucination answers from your documentation. Features persistent sessions, multi-notebook management, and n8n workflow integration.

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

Notion MCP Server

Notion MCP Server

Notion 用の MCP サーバー

LacyLights MCP Server

LacyLights MCP Server

Provides AI-powered theatrical lighting design capabilities for the LacyLights system, allowing users to generate lighting scenes, analyze scripts, manage cues, and optimize lighting effects based on artistic intent.

Cursor10x MCP

Cursor10x MCP

Cursor10x Memory Systemは、AIアシスタント(特にClaude)のために永続的なメモリレイヤーを構築し、短期記憶、長期記憶、およびエピソード記憶を自律的に保持し、想起することを可能にします。

Google Spanner MCP Server by CData

Google Spanner MCP Server by CData

This read-only MCP Server allows you to connect to Google Spanner data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcp

MCP Microsoft Graph Server

MCP Microsoft Graph Server

Provides secure access to Microsoft Entra ID (Azure AD) resources including users, devices, and applications through Microsoft Graph API. Enables querying organizational data with comprehensive audit logging to Azure Blob Storage.

Directus MCP Server

Directus MCP Server

A Node.js server that enables AI Clients to interact with the Directus CMS API through the Model Context Protocol, allowing for management of collections, items, files, users, and system information.

E-commerce MCP Server

E-commerce MCP Server

Provides tools to query e-commerce data including customer information, order details, and product inventory through a Model Context Protocol interface with test data.

Argo CD MCP Server

Argo CD MCP Server

Enables AI assistants to interact with Argo CD applications through natural language. Provides comprehensive access to Argo CD resources including application management, synchronization, resource monitoring, and GitOps operations.

calc-mcp

calc-mcp

了解しました。シンプルなMCPサーバーに計算機ツールを追加する、ということですね。 これはかなり複雑なタスクなので、完全なコードを提供するのではなく、手順と重要なポイントを説明します。 **必要なもの:** * **Minecraft Coder Pack (MCP):** Minecraftのソースコードをデコンパイル、修正、再コンパイルするためのツール。 * **Java Development Kit (JDK):** Javaのプログラミング環境。 * **IDE (Integrated Development Environment):** Eclipse、IntelliJ IDEAなど、Javaの開発を支援するツール。 **手順:** 1. **MCPのセットアップ:** * 最新のMCPをダウンロードし、展開します。 * `decompile.bat` (または `decompile.sh` on Linux/macOS) を実行して、Minecraftのソースコードをデコンパイルします。 * `reobfuscate.bat` (または `reobfuscate.sh`) を実行して、難読化されたコードを読みやすい名前に変更します。 2. **開発環境のセットアップ:** * IDEで新しいJavaプロジェクトを作成します。 * MCPの`jars/`ディレクトリにある必要なライブラリ (Minecraftのjarファイルなど) をプロジェクトに追加します。 * MCPの`src/minecraft/`ディレクトリにあるソースコードをプロジェクトに追加します。 3. **計算機ツールの作成:** * **新しいアイテムクラスの作成:** `ItemCalculator.java`のような名前で、`Item`クラスを継承する新しいクラスを作成します。 * **アイテムのテクスチャの作成:** 計算機を表すテクスチャを作成し、`assets/minecraft/textures/items/`ディレクトリに保存します。 * **アイテムのモデルの作成:** アイテムの3Dモデルを作成し、`assets/minecraft/models/item/`ディレクトリに保存します。 * **アイテムの登録:** `GameRegistry.registerItem()`を使って、アイテムをMinecraftに登録します。 4. **計算機能の実装:** * **GUIの作成:** 計算機を表示するためのGUIを作成します。これは、`GuiScreen`クラスを継承する新しいクラスとして実装できます。 * **計算ロジックの実装:** GUIで入力された数式を評価し、結果を表示するロジックを実装します。 Javaの`ScriptEngineManager`クラスを使って、JavaScriptなどのスクリプトエンジンで数式を評価するのが簡単です。 * **アイテムの使用時の処理:** `ItemCalculator`クラスの`onItemRightClick()`メソッドをオーバーライドし、アイテムが右クリックされたときにGUIを開くようにします。 5. **レシピの追加:** * 計算機を作成するためのレシピを追加します。 `GameRegistry.addRecipe()`を使って、レシピを登録します。 6. **コンパイルとテスト:** * プロジェクトをコンパイルします。 * `recompile.bat` (または `recompile.sh`) を実行して、修正されたコードを再コンパイルします。 * `reobfuscate.bat` (または `reobfuscate.sh`) を実行して、コードを難読化します。 * `run.bat` (または `run.sh`) を実行して、Minecraftを起動し、計算機ツールをテストします。 **コード例 (ItemCalculator.java):** ```java package net.minecraft.item; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.world.World; public class ItemCalculator extends Item { public ItemCalculator() { this.setCreativeTab(CreativeTabs.tabTools); this.setTextureName("yourmod:calculator"); // テクスチャ名を設定 this.setUnlocalizedName("calculator"); // ローカライズ名を登録 } @Override public ItemStack onItemRightClick(ItemStack itemStack, World world, EntityPlayer player) { if (!world.isRemote) { // サーバー側でのみ実行 // GUIを開く処理をここに記述 // 例: player.openGui(YourMod.instance, YourGuiHandler.GUI_ID, world, (int)player.posX, (int)player.posY, (int)player.posZ); } return itemStack; } } ``` **重要なポイント:** * **イベントハンドリング:** Minecraftのイベント (アイテムの使用、GUIの表示など) を処理するために、イベントハンドラを登録する必要があります。 * **GUIの実装:** GUIは、`GuiScreen`クラスを継承するクラスとして実装します。 ボタン、テキストフィールド、ラベルなどのGUI要素を追加できます。 * **ネットワーク:** クライアントとサーバー間でデータをやり取りする必要がある場合は、ネットワーク通信を実装する必要があります。 * **Modの配布:** Modを配布するには、Modのjarファイルを作成し、Minecraftの`mods/`ディレクトリに配置します。 **注意:** * Minecraftのバージョンによって、APIが異なる場合があります。 使用しているMinecraftのバージョンに対応したMCPを使用してください。 * Modの開発には、Javaの知識が必要です。 * Modの開発は、時間がかかる場合があります。 この手順とコード例が、あなたのプロジェクトの助けになることを願っています。頑張ってください!

GnuRadio

GnuRadio

GnuRadio

Atlas MCP Server

Atlas MCP Server

アトラスMCPサーバー

Gmail MCP Server

Gmail MCP Server

weather-server MCP Server

weather-server MCP Server

Jentic

Jentic

Jentic

MCP Agent Orchestration System

MCP Agent Orchestration System

ステートベースのエージェントオーケストレーションシステム。会話の文脈を維持し、ステート固有のプロンプトを提供しながら、異なるステート(IDLE、PLANNING、RESEARCHING、EXECUTING、REVIEWING、ERROR)間を遷移できます。

Bright Data Web MCP

Bright Data Web MCP

Enables LLMs and AI agents to access real-time web data, search websites, and navigate the web without getting blocked. Includes 5,000 free monthly requests and supports web scraping, browser automation, and bypassing geo-restrictions.

Grumpy Senior Developer MCP

Grumpy Senior Developer MCP

了解しました。以下に、その内容を日本語に翻訳します。 **日本語訳:** 偏屈なベテラン開発者のように、皮肉とシニカルな口調でコードレビューを行うMCPサーバー。PRの問題点を特定し、コード品質に関するフィードバックを提供します。

Crawl4ai MCP Server

Crawl4ai MCP Server

Crawl4ai を使用してウェブクローリング機能を提供するモデルコンテキストプロトコルサーバー

Databricks MCP Server

Databricks MCP Server

Enables AI assistants like Claude to interact with Databricks workspaces through secure OAuth authentication. Supports custom prompts, tools for cluster management, SQL execution, and job operations via the Databricks SDK.

H1B Job Search MCP Server

H1B Job Search MCP Server

Enables searching and analyzing H-1B visa sponsoring companies using U.S. Department of Labor data. Supports filtering by job role, location, and salary with natural language queries to find direct employers and export results.

MCP Outlook Tools

MCP Outlook Tools

A Model Context Protocol server that enables AI assistants to interact with Microsoft Outlook for calendar management, email operations, and search functionality.

Service Atlas MCP Server

Service Atlas MCP Server

Provides tools to communicate with a service dependency API, enabling users to query and interact with service relationship data and dependency mappings.

UniProt MCP Server

UniProt MCP Server

UniProt MCP Server

MCP Server

MCP Server

A Node In Layers package that simplifies creation of MCP (Model-Control-Protocol) servers with tools for defining models, adding CRUD operations, and interacting with clients.

Calibre MCP Server

Calibre MCP Server

Enables searching and reading books from your Calibre ebook library through MCP. Supports title, author, and full-text search across multiple formats with lightweight Windows-optimized implementation.

Remote MCP Server with Bearer Auth

Remote MCP Server with Bearer Auth

Cloudflare Workers を利用した MCP サーバー実装。OAuth ログインとベアラートークン認証をサポートし、Claude Desktop や MCP Inspector などの MCP クライアントからの安全な接続を可能にします。

esa-mcp-server

esa-mcp-server