Discover Awesome MCP Servers
Extend your agent with 84,469 capabilities via MCP servers.
- All84,469
- 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
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.
DevInsight MCP
Enables Claude to inspect, analyze, and grade local Git repositories with tools for stats, TODO scanning, git history, large file detection, health scores, and tech stack fingerprinting.
mcp-ux-vision
Enables AI-powered visual analysis of webpages for UI/UX assessment, including screenshot capture, element detection, accessibility auditing, and comprehensive JSON reporting.
exercicio-4.2-todo-mcp
MCP server that provides tools to create and list tasks by consuming a REST API, allowing LLMs to manage a TODO list via natural language.
Blender-Mind-MCP
Enables AI-driven 3D modeling in Blender by providing tools to create primitives, apply modifiers and materials, set up lighting and cameras, capture viewport snapshots, export assets, inspect scenes, and execute Python commands via natural language.
Obsidian MCP Server
A server that enables AI agents to perform sophisticated knowledge discovery and analysis across Obsidian vaults through the Local REST API plugin, supporting complex multi-step workflows with advanced filtering and full content retrieval.
OmniParser MCP
MCP server that wraps Microsoft OmniParser to provide screen parsing capabilities, returning structured UI elements (text, icons, coordinates) from screenshots for GUI agents.
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の開発は、時間がかかる場合があります。 この手順とコード例が、あなたのプロジェクトの助けになることを願っています。頑張ってください!
RunComfy MCP Server
Enables generation of AI videos and images using RunComfy APIs. Supports multiple models for text-to-video, image-to-video, text-to-image, and image-to-image workflows with customizable parameters like aspect ratio, duration, and seed.
AgentGate
An MCP proxy firewall that evaluates every tool call against a configurable policy, enabling allow/deny/approval decisions, secret redaction, and a tamper-evident audit trail.
Bridge MCP Server
Bridge is a hosted MCP server that connects AI models to business tools like ClickUp and a repository of pre-built workflow skills. It enables direct interaction with project management tools and automated instruction sets through natural language.
CTS MCP Server
Automates Close-to-Shore methodology for Godot game development by creating tasks in Shrimp MCP from hop plans and generating interactive visualizations of signal architectures, dependencies, and project metrics.
DevScope MCP
Provides project context for AI agents in VS Code by analyzing technologies, structure, AGENTS.md rules, current branch, and source code without allowing arbitrary commands.
mcp-server-jis
MCP server for jis: bilateral intent identity verification. Enables users to verify identities, request mutual consent, and send verified messages within the Intent-Centric Web ecosystem.
NetBox MCP Server
A read-only FastMCP server that enables AI assistants to query and retrieve network infrastructure information from NetBox using natural language.
kael-thread-rebuild-mcp
MCP server for safely continuing long Claude Code sessions by cleaning transcripts, removing runtime noise, and generating verified resumable sessions with rollback support.
peaka-mcp-server
Peaka 用の MCP サーバー実装
Hello World MCP Server
Model Context Protocol (MCP) SDK を実装したデモンストレーションサーバー。サーバー送信イベントとメッセージ処理のためのツールとエンドポイントを提供します。
Ridgeline Finance OS MCP
A Model Context Protocol server exposing the freight accrual pipeline as reusable tools, enabling agents to execute, monitor, sign off, and improve accrual runs.
MindDory MCP Server
Connects AI assistants like Claude to MindDory to automatically capture new vocabulary and grammar mistakes into spaced-repetition flashcards during language practice conversations.
Leapd MCP
MCP server that connects AI assistants to Leapd, enabling them to launch and manage an AI-run business by creating tasks, deploying sites, and accessing business documents.
clipboard-mcp
A simple MCP server that allows AI assistants to read from and write to the system clipboard.
grok-mcp
A minimal local MCP server that lets Claude Desktop or Claude Code delegate coding tasks to Grok Build running headless as a subagent.
docx-mcp
Legal document redlining engine that applies AI-generated JSON changes as professional tracked changes with comments in .docx files, producing Word-indistinguishable output.
tapp
Provides autonomous QA and a deterministic ship/no-ship verdict for iOS and web apps, enabling coding agents to explore, screenshot, and test apps via MCP tools.
Prometheus MCP Server Extended
Enables querying real-time and historical server performance metrics (CPU, memory, disk IO, load, TCP) from Prometheus via Node Exporter.
Jobless MCP
Personalized job search inside Claude. Get ranked job matches based on your actual skills, not keywords.
tessera-mcp
Enables AI agents to manage a fictional B2B workspace SaaS (Tessera) with tools for ticketing, invoicing, customer management, and trial extensions, featuring a human-in-the-loop confirm pattern for safety.
tushare-mcp-http
A MCP server that provides HTTP-based access to Tushare financial data, enabling AI assistants to query stocks, indices, funds, and more.
mcp-mediawiki-crunchtools
A secure MCP server for interacting with MediaWiki instances, allowing users to search, read, create, and manage wiki content like pages, categories, and files. It supports both public and private wikis with comprehensive authentication for full read and write operations.