Discover Awesome MCP Servers

Extend your agent with 16,031 capabilities via MCP servers.

All16,031
ChillMCP

ChillMCP

Enables AI agents to take breaks and manage stress levels through 8 different break activities like watching Netflix, coffee breaks, and bathroom breaks. Features automatic stress accumulation, boss alert systems, and natural language commands for work-life balance simulation.

InfluxDB Natural Language Query MCP Server

InfluxDB Natural Language Query MCP Server

Enables users to generate and execute InfluxDB queries using natural language commands in Korean. Supports querying metrics like CPU usage, memory status, and system monitoring data through conversational interface.

Perplexity MCP Server

Perplexity MCP Server

Perplexityの検索拡張AI機能をLLMエージェントに提供する、Perplexity APIモデルコンテキストプロトコル(MCP)サーバーです。堅牢なエラー処理、安全な入力検証、そして `showThinking` パラメータによる透明性の高い推論が特徴です。型安全性、モジュール化されたアーキテクチャ、そして本番環境対応のユーティリティを備えています。

Remote MCP Server

Remote MCP Server

A Cloudflare Workers-based server that implements the Model Context Protocol (MCP), allowing AI assistants like Claude to access custom tools without authentication.

Health & Fitness Coach MCP

Health & Fitness Coach MCP

A comprehensive AI-powered fitness tracking application that enables AI tools to interact intelligently with user fitness data, providing personalized workout plans, nutrition tracking, and progress analysis through natural language.

Google Search MCP Server

Google Search MCP Server

An MCP server that provides Google Search functionality with automatic API key rotation and intelligent quota management, enabling natural language search queries with advanced filtering options.

Metal Price MCP Server

Metal Price MCP Server

An MCP server that provides current and historical gold/precious metal prices (gold, silver, platinum, and palladium) via the GoldAPI.io service with support for multiple currencies.

MCP Weather Server

MCP Weather Server

了解しました。MCP (Mod Coder Pack) のドキュメントにある「クイックスタート」サーバーの実装について説明します。 MCP のクイックスタートサーバーは、Minecraft の Mod 開発を始めるための基本的な環境を構築するものです。以下の手順で実装できます。 **1. 環境構築 (MCP のセットアップ)** * **Java Development Kit (JDK) のインストール:** Minecraft Mod は Java で開発するため、JDK が必要です。最新の推奨バージョンを Oracle のウェブサイトからダウンロードしてインストールしてください。 * **MCP のダウンロード:** MCP の公式ウェブサイト (通常は MinecraftForge のフォーラム) から、開発したい Minecraft のバージョンに対応した MCP をダウンロードします。 * **MCP の展開:** ダウンロードした MCP のアーカイブ (zip ファイルなど) を、Mod 開発用のディレクトリに展開します。 **2. MCP の設定** * **`gradlew` の実行:** MCP の展開ディレクトリで、コマンドプロンプトまたはターミナルを開き、`gradlew` コマンドを実行します。これにより、Gradle が必要な依存関係をダウンロードし、MCP をセットアップします。 * Windows の場合: `gradlew.bat` * Linux/macOS の場合: `./gradlew` * **`decompile` タスクの実行:** `gradlew decompile` コマンドを実行します。これにより、Minecraft のソースコードが逆コンパイルされ、Mod 開発に必要なファイルが生成されます。この処理には時間がかかる場合があります。 * **`eclipse` または `idea` タスクの実行 (IDE を使用する場合):** Eclipse を使用する場合は `gradlew eclipse`、IntelliJ IDEA を使用する場合は `gradlew idea` コマンドを実行します。これにより、IDE で Mod プロジェクトを開くための設定ファイルが生成されます。 **3. IDE でのプロジェクトのインポート (IDE を使用する場合)** * **Eclipse:** Eclipse を起動し、「ファイル」→「インポート」→「既存のプロジェクトをワークスペースへ」を選択します。MCP の展開ディレクトリを選択し、プロジェクトをインポートします。 * **IntelliJ IDEA:** IntelliJ IDEA を起動し、「ファイル」→「開く」を選択します。MCP の展開ディレクトリにある `build.gradle` ファイルを選択してプロジェクトを開きます。 **4. クイックスタートサーバーの実行** * **`runClient` タスクの実行:** IDE の Gradle タスクビュー (またはコマンドライン) から `runClient` タスクを実行します。これにより、Minecraft クライアントが起動し、Mod 開発環境でテストプレイできます。 * **`runServer` タスクの実行:** IDE の Gradle タスクビュー (またはコマンドライン) から `runServer` タスクを実行します。これにより、Minecraft サーバーが起動し、Mod 開発環境でサーバー側の動作をテストできます。 **5. 簡単な Mod の作成 (例)** * **ソースコードの編集:** `src/main/java` ディレクトリに、Mod のソースコードを作成します。例えば、ブロックを追加したり、アイテムを追加したりする簡単な Mod を作成できます。 * **`build.gradle` の編集:** `build.gradle` ファイルを編集して、Mod の情報を設定します (Mod ID、Mod 名、バージョンなど)。 * **Mod のビルド:** `gradlew build` コマンドを実行して、Mod をビルドします。ビルドされた Mod ファイルは、`build/libs` ディレクトリに生成されます。 **注意点:** * **Minecraft のバージョン:** 使用する Minecraft のバージョンと、対応する MCP のバージョンを必ず一致させてください。 * **Gradle のバージョン:** MCP に付属している Gradle のバージョンを使用してください。 * **エラーメッセージ:** エラーメッセージが表示された場合は、メッセージの内容をよく確認し、解決策を調べてください。 * **ドキュメント:** MCP のドキュメントや MinecraftForge のドキュメントを参考にしてください。 **日本語での補足:** * **逆コンパイル:** `decompile` タスクは、Minecraft の難読化されたコードを、ある程度人間が読める形に変換する処理です。 * **Gradle:** Gradle は、Java プロジェクトのビルドを自動化するためのツールです。 * **タスク:** Gradle のタスクは、特定の処理を実行するための命令です (例: `decompile`, `runClient`, `build`)。 この手順で、MCP のクイックスタートサーバーを実装し、Mod 開発を始めることができるはずです。もし、具体的なエラーメッセージや問題が発生した場合は、詳細な情報を提供していただければ、より的確なアドバイスをすることができます。

React Native Godot Documentation MCP Server

React Native Godot Documentation MCP Server

Enables intelligent access to React Native Godot documentation, examples, API references, and troubleshooting guides through searchable tools optimized for LLM workflows.

Simple MCP Server Example

Simple MCP Server Example

A simple example of an MCP server implementation for testing purposes

Autoconsent MCP

Autoconsent MCP

A Model Context Protocol server that provides browser automation capabilities for creating and testing Autoconsent rules, enabling LLMs to interact with web pages and test consent management platforms in a real browser environment.

translator-ai

translator-ai

Enables translation of JSON i18n files to multiple languages using various AI providers (Google Gemini, OpenAI, Ollama/DeepSeek) with intelligent caching and deduplication.

Aegntic MCP Servers

Aegntic MCP Servers

AegnticMCPは、MCPサーバーの作成と管理を自動化し、安定性、適応性、そしてインテリジェンスを保証します。

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

vb-gitlab-mcp

vb-gitlab-mcp

GitLab MCP (Model Context Protocol) Server は、コードレビューの AI 自動分析を行うために使用できます。

MCP Goose Subagents Server

MCP Goose Subagents Server

An MCP server that enables AI clients to delegate tasks to autonomous developer teams using Goose CLI subagents, supporting parallel and sequential execution across specialized roles like backend developers, frontend developers, and security auditors.

ServiceNow MCP Server by CData

ServiceNow MCP Server by CData

ServiceNow MCP Server by CData

HC3 MCP Server

HC3 MCP Server

Enables AI assistants to interact with Fibaro Home Center 3 smart home systems through natural language commands. Provides comprehensive device control, scene management, QuickApp development, and system monitoring capabilities via the HC3 REST API.

Pluggedin Random Number Generator

Pluggedin Random Number Generator

Teaching LLMs that Math.random() is so last century

Searchcraft MCP Server

Searchcraft MCP Server

An MCP server that enables AI assistants like Claude Desktop to search and retrieve information from custom search indexes created with Searchcraft.

Datadog MCP Server

Datadog MCP Server

Enables interaction with Datadog's monitoring platform to search logs, search trace spans, and perform trace span aggregation for analysis.

CodeQL MCP Server

CodeQL MCP Server

このプロジェクトは、CodeQLクエリサーバーをラップするModel Context Protocol(MCP)サーバーを実行します。これにより、[Cursor]のようなツールが、

WhatsApp Web MCP

WhatsApp Web MCP

WhatsApp WebをAIモデルに接続するブリッジ。Model Context Protocolを使用し、Claudeや他のAIシステムが標準化されたインターフェースを通じてWhatsAppとやり取りできるようにする。

Mureka MCP Server

Mureka MCP Server

A Model Context Protocol server that enables AI assistants like Claude to generate lyrics, songs, and background music through Mureka's APIs.

Sequential Thinking MCP Server

Sequential Thinking MCP Server

複雑な問題を管理しやすいステップに分解し、修正、分岐、仮説生成をサポートすることで、動的かつ内省的な問題解決のためのツールを提供します。

buttplug-mcp - Buttplug.io MCP Server

buttplug-mcp - Buttplug.io MCP Server

Buttplug.io モデルコンテキストプロトコル (MCP) サーバー

MCP Browser Kit

MCP Browser Kit

Google Directory MCP Server by CData

Google Directory MCP Server by CData

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

Xcode Diagnostics MCP Plugin

Xcode Diagnostics MCP Plugin

Xcodeのビルドシステムに接続し、Swiftプロジェクトのエラーと警告を抽出、解析、表示することで、AIアシスタントがビルドログを手動で検索することなく、コードの問題を迅速に特定できるようにします。

Notion MCP Server

Notion MCP Server

Enables interaction with Notion databases through the Notion API, supporting full CRUD operations on pages and databases. Supports advanced querying, filtering, sorting, and all property types with Docker deployment for easy integration with Cursor and Claude.