Discover Awesome MCP Servers
Extend your agent with 23,601 capabilities via MCP servers.
- All23,601
- 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
Microsoft Copilot Studio ❤️ MCP
A Model Context Protocol (MCP) server that provides joke-fetching capabilities, demonstrating how to deploy an MCP Server and integrate it with Microsoft Copilot Studio.
Airbnb Search & Listings
Enables users to search Airbnb listings with advanced filtering options and retrieve detailed property information through an MCP server interface.
Blabber-MCP
OpenAIのText-to-Speech APIを使用して、LLMがテキストから音声オーディオを生成できるようにするMCPサーバー。様々な声、モデル、およびオーディオ形式をサポートします。
GalaConnect MCP Server
LLM で使用するための Galachain MCP サーバー
Airbnb MCP Server
Enables searching for Airbnb listings and retrieving detailed property information including pricing, amenities, and host details without requiring an API key.
Spotify-Claude MCP Server
Spotify APIに接続し、Claudeが自然言語クエリを通じてアーティスト情報にアクセスし、音楽発見を強化できるツール。
Feather Code MCP Server
A GitHub integration for Claude Desktop that provides access to GitHub features directly from Claude, offering 15 powerful tools for repository management, issues, pull requests, and code operations.
MCP Google Calendar Integration
Connects with Google Calendar API to fetch calendar events for specific dates through natural language commands in AI-driven editors like Cursor, enabling real-time calendar data access within your coding environment.
MCP-NAVER-Map
ネイバーマップ MCP サーバー
Playwright MCP
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots, providing browser automation capabilities without requiring screenshots or visually-tuned models.
🚀 MCP-AWS: AI Agent for AWS EC2 Management
POC: OpenAI Agents SDK を使用した MCP サーバー
SparkMango
Sparkmangoを使用すると、エージェントはコントラクトABIからMCPサーバーを生成して使用できます。
Supermemory MCP
A universal memory server that allows users to access their chat memories across different LLMs without requiring logins or payment.
MCP Mailtrap Server
公式 mailtrap.io MCP サーバー
TaskUp MCP Server
A centralized workspace orchestration server that enables natural language task management across Notion, Google Calendar, and Telegram. It allows users to analyze intent, create database tasks, schedule calendar events, and send instant notifications.
OpenShift OVN-Kubernetes Benchmark MCP Server
Enables comprehensive benchmarking and performance monitoring of OpenShift clusters using OVN-Kubernetes networking through automated data collection, AI-powered analysis, and report generation. Provides intelligent insights into cluster performance, bottleneck detection, and optimization recommendations.
Attendee MCP Server
A Model Context Protocol server that allows users to create and manage meeting bots capable of joining video calls, speaking, sending chat messages, and retrieving meeting transcripts.
Azure Kusto MCP Server
Azure Kusto 向けの MCP サーバー
News MCP Server for VnExpress
Enables AI agents to interact with VnExpress news content through RSS feeds, advanced search with filters, and clean article text extraction for Vietnamese news consumption.
mcp-deep-research
ローカル環境にデプロイされた、ディープな研究のために設計されたMCPサーバー。
build-simple-mcp
Okay, here's a breakdown of how to build a simple Minecraft (MCP) server, along with explanations and considerations. I'll focus on the core steps and provide some basic configuration. Keep in mind that running a server can be resource-intensive, and you'll need a decent computer or a cloud server to host it effectively. **Important Considerations Before You Start:** * **Hardware:** A dedicated server is best. For a few players, a decent desktop computer might suffice. For more players, consider a cloud server (AWS, Google Cloud, Azure, DigitalOcean, etc.). RAM is crucial (at least 2GB, more for more players and mods). A fast CPU and SSD storage are also beneficial. * **Operating System:** Windows, macOS, or Linux can all host Minecraft servers. Linux is generally preferred for performance and stability. * **Java:** Minecraft servers require Java. Make sure you have the correct version installed. * **Firewall:** You'll need to open ports on your firewall to allow players to connect. The default Minecraft port is 25565. * **IP Address:** You'll need to know your server's public IP address so players can connect. * **EULA:** Make sure you understand and agree to the Minecraft EULA (End User License Agreement). **Steps to Build a Simple Minecraft Server:** 1. **Install Java:** * **Check if Java is installed:** Open a command prompt (Windows) or terminal (macOS/Linux) and type `java -version`. If Java is installed, you'll see version information. * **Download Java:** If Java isn't installed or is the wrong version, download the latest Java SE Development Kit (JDK) from Oracle or a distribution like Adoptium (Temurin). **Important:** Minecraft 1.17 and later require Java 17 or higher. Earlier versions may work with Java 8. * **Install Java:** Follow the installation instructions for your operating system. Make sure to set the `JAVA_HOME` environment variable if necessary (especially on Windows). 2. **Download the Minecraft Server Software:** * Go to the official Minecraft website: [https://www.minecraft.net/en-us/download/server](https://www.minecraft.net/en-us/download/server) * Download the `minecraft_server.jar` file. This is the core server software. 3. **Create a Server Directory:** * Create a new folder on your computer where you want to store your server files. For example, you might create a folder named `MinecraftServer`. 4. **Place the `minecraft_server.jar` File:** * Move the `minecraft_server.jar` file you downloaded into the server directory you just created. 5. **Run the Server for the First Time:** * Open a command prompt or terminal. * Navigate to your server directory using the `cd` command. For example: ```bash cd /path/to/MinecraftServer # Linux/macOS cd C:\path\to\MinecraftServer # Windows ``` * Run the server using the following command: ```bash java -Xmx2G -Xms2G -jar minecraft_server.jar nogui ``` * `-Xmx2G`: Sets the maximum amount of RAM the server can use to 2GB. Adjust this based on your available RAM and the number of players. More players = more RAM. * `-Xms2G`: Sets the initial amount of RAM the server uses to 2GB. * `minecraft_server.jar`: Specifies the server JAR file to run. * `nogui`: Starts the server without the graphical user interface (GUI). This is generally preferred for performance. 6. **Accept the EULA:** * When you run the server for the first time, it will generate a file named `eula.txt` in your server directory. * Open `eula.txt` in a text editor. * Change `eula=false` to `eula=true`. * Save the file. 7. **Run the Server Again:** * Run the same command as before: ```bash java -Xmx2G -Xms2G -jar minecraft_server.jar nogui ``` * The server will now start properly and generate the world files. 8. **Configure the Server (Optional):** * A file named `server.properties` will be created in your server directory. This file contains various server settings. * Open `server.properties` in a text editor to customize the server. Some common settings include: * `level-name`: The name of the world. * `gamemode`: The default game mode (survival, creative, adventure, spectator). * `difficulty`: The difficulty level (peaceful, easy, normal, hard). * `max-players`: The maximum number of players allowed on the server. * `server-port`: The port the server listens on (default is 25565). * `online-mode`: Set to `true` for online authentication (requires players to have a legitimate Minecraft account). Set to `false` for offline mode (not recommended for public servers). * `motd`: The message of the day that is displayed in the Minecraft server list. 9. **Open Your Firewall:** * You need to allow incoming connections on port 25565 (or the port you specified in `server.properties`) through your firewall. The exact steps for doing this depend on your operating system and firewall software. Search online for instructions specific to your setup. 10. **Connect to Your Server:** * Start Minecraft on your computer. * Click "Multiplayer". * Click "Add Server". * Enter a server name (anything you like). * Enter your server's IP address in the "Server Address" field. If you're running the server on the same computer you're playing on, you can use `localhost` or `127.0.0.1`. If you're connecting from another computer on your local network, use the server's local IP address (e.g., 192.168.1.10). If you're connecting from outside your local network, you'll need to use your server's public IP address. * Click "Done". * Select your server from the list and click "Join Server". **Important Notes and Troubleshooting:** * **RAM:** Insufficient RAM is a common cause of server lag and crashes. Monitor your server's RAM usage and increase the `-Xmx` value if necessary. * **CPU:** A slow CPU can also cause lag. * **Internet Connection:** A slow or unreliable internet connection will affect the server's performance for players connecting from outside your local network. * **Port Forwarding (for external access):** If you want players outside your local network to connect, you'll need to configure port forwarding on your router. This tells your router to forward traffic on port 25565 (or your chosen port) to the computer running the server. The exact steps for port forwarding vary depending on your router model. Consult your router's documentation. * **Dynamic IP Address:** If your internet service provider (ISP) assigns you a dynamic IP address (an IP address that changes periodically), you'll need to use a dynamic DNS service (e.g., No-IP, DuckDNS) to give your server a consistent hostname that players can use to connect. * **Plugins and Mods:** Once you have a basic server running, you can add plugins (using a server platform like Spigot or Paper) or mods (using Forge) to enhance the gameplay. These require additional setup and configuration. * **Server Management Tools:** Consider using a server management tool like Multicraft or Pterodactyl Panel to simplify server administration. **Example `server.properties` File:** ```properties #Minecraft server properties #Wed Oct 26 10:00:00 UTC 2023 enable-jmx-monitoring=false rcon.port=25575 gamemode=survival enable-command-block=false enable-query=false level-name=world motd=My Awesome Minecraft Server! query.port=25565 pvp=true generate-structures=true max-players=10 network-compression-threshold=256 online-mode=true enable-status=true force-gamemode=false level-seed= prevent-proxy-connections=false server-port=25565 debug=false snooper-enabled=true resource-pack-sha1= level-type=DEFAULT enable-rcon=false rate-limit=0 hardcore=false white-list=false max-build-height=256 spawn-npcs=true spawn-animals=true server-ip= resource-pack= allow-nether=true spawn-monsters=true use-native-transport=true enable-encryption=true difficulty=easy rcon.password= broadcast-console-to-ops=true player-idle-timeout=0 max-world-size=29999984 ``` This is a basic guide. Setting up a Minecraft server can be complex, especially if you want to customize it with plugins or mods. Good luck! Now, let's translate this into Japanese. **Japanese Translation:** **始める前に重要な考慮事項:** * **ハードウェア:** 専用サーバーが最適です。少人数のプレイヤーであれば、普通のデスクトップPCでも十分かもしれません。より多くのプレイヤーを抱える場合は、クラウドサーバー(AWS、Google Cloud、Azure、DigitalOceanなど)を検討してください。RAMが非常に重要です(少なくとも2GB、プレイヤー数やMODの数に応じてさらに多く)。高速なCPUとSSDストレージも有利です。 * **オペレーティングシステム:** Windows、macOS、LinuxのいずれもMinecraftサーバーをホストできます。一般的に、パフォーマンスと安定性のためにLinuxが推奨されます。 * **Java:** MinecraftサーバーにはJavaが必要です。正しいバージョンがインストールされていることを確認してください。 * **ファイアウォール:** プレイヤーが接続できるように、ファイアウォールでポートを開く必要があります。デフォルトのMinecraftポートは25565です。 * **IPアドレス:** プレイヤーが接続できるように、サーバーのパブリックIPアドレスを知っておく必要があります。 * **EULA:** Minecraft EULA(エンドユーザーライセンス契約)を理解し、同意していることを確認してください。 **シンプルなMinecraftサーバーを構築する手順:** 1. **Javaのインストール:** * **Javaがインストールされているか確認:** コマンドプロンプト(Windows)またはターミナル(macOS/Linux)を開き、`java -version`と入力します。 Javaがインストールされている場合は、バージョン情報が表示されます。 * **Javaのダウンロード:** Javaがインストールされていない場合、またはバージョンが間違っている場合は、Oracleから最新のJava SE Development Kit(JDK)をダウンロードするか、Adoptium(Temurin)などのディストリビューションをダウンロードしてください。 **重要:** Minecraft 1.17以降では、Java 17以上が必要です。以前のバージョンはJava 8で動作する可能性があります。 * **Javaのインストール:** オペレーティングシステムの手順に従ってインストールします。必要に応じて、`JAVA_HOME`環境変数を設定してください(特にWindowsの場合)。 2. **Minecraftサーバーソフトウェアのダウンロード:** * Minecraftの公式ウェブサイトにアクセスします: [https://www.minecraft.net/en-us/download/server](https://www.minecraft.net/en-us/download/server) * `minecraft_server.jar`ファイルをダウンロードします。 これはコアサーバーソフトウェアです。 3. **サーバーディレクトリの作成:** * サーバーファイルを保存する新しいフォルダをコンピュータ上に作成します。 たとえば、`MinecraftServer`という名前のフォルダを作成できます。 4. **`minecraft_server.jar`ファイルの配置:** * ダウンロードした`minecraft_server.jar`ファイルを、作成したサーバーディレクトリに移動します。 5. **サーバーの初回起動:** * コマンドプロンプトまたはターミナルを開きます。 * `cd`コマンドを使用して、サーバーディレクトリに移動します。 例: ```bash cd /path/to/MinecraftServer # Linux/macOS cd C:\path\to\MinecraftServer # Windows ``` * 次のコマンドを使用してサーバーを実行します。 ```bash java -Xmx2G -Xms2G -jar minecraft_server.jar nogui ``` * `-Xmx2G`: サーバーが使用できる最大RAM量を2GBに設定します。 利用可能なRAMとプレイヤー数に基づいて調整してください。 プレイヤーが多いほど、より多くのRAMが必要です。 * `-Xms2G`: サーバーが使用する初期RAM量を2GBに設定します。 * `minecraft_server.jar`: 実行するサーバーJARファイルを指定します。 * `nogui`: グラフィカルユーザーインターフェイス(GUI)なしでサーバーを起動します。 これは通常、パフォーマンスのために推奨されます。 6. **EULAへの同意:** * サーバーを初めて実行すると、`eula.txt`という名前のファイルがサーバーディレクトリに生成されます。 * テキストエディタで`eula.txt`を開きます。 * `eula=false`を`eula=true`に変更します。 * ファイルを保存します。 7. **サーバーの再起動:** * 以前と同じコマンドを実行します。 ```bash java -Xmx2G -Xms2G -jar minecraft_server.jar nogui ``` * サーバーが正しく起動し、ワールドファイルが生成されます。 8. **サーバーの設定(オプション):** * `server.properties`という名前のファイルがサーバーディレクトリに作成されます。 このファイルには、さまざまなサーバー設定が含まれています。 * テキストエディタで`server.properties`を開き、サーバーをカスタマイズします。 一般的な設定には次のものがあります。 * `level-name`: ワールドの名前。 * `gamemode`: デフォルトのゲームモード(survival、creative、adventure、spectator)。 * `difficulty`: 難易度(peaceful、easy、normal、hard)。 * `max-players`: サーバーで許可される最大プレイヤー数。 * `server-port`: サーバーがリッスンするポート(デフォルトは25565)。 * `online-mode`: オンライン認証の場合は`true`に設定します(プレイヤーは正当なMinecraftアカウントを持っている必要があります)。 オフラインモードの場合は`false`に設定します(パブリックサーバーには推奨されません)。 * `motd`: Minecraftサーバーリストに表示されるメッセージ。 9. **ファイアウォールの開放:** * ファイアウォールを介して、ポート25565(または`server.properties`で指定したポート)への受信接続を許可する必要があります。 正確な手順は、オペレーティングシステムとファイアウォールソフトウェアによって異なります。 あなたのセットアップに固有の手順をオンラインで検索してください。 10. **サーバーへの接続:** * コンピュータでMinecraftを起動します。 * 「マルチプレイ」をクリックします。 * 「サーバーを追加」をクリックします。 * サーバー名を入力します(好きな名前)。 * 「サーバーアドレス」フィールドにサーバーのIPアドレスを入力します。 サーバーを実行しているコンピュータと同じコンピュータでプレイしている場合は、`localhost`または`127.0.0.1`を使用できます。 ローカルネットワーク上の別のコンピュータから接続している場合は、サーバーのローカルIPアドレス(例:192.168.1.10)を使用します。 ローカルネットワークの外部から接続している場合は、サーバーのパブリックIPアドレスを使用する必要があります。 * 「完了」をクリックします。 * リストからサーバーを選択し、「サーバーに接続」をクリックします。 **重要な注意点とトラブルシューティング:** * **RAM:** RAMの不足は、サーバーのラグやクラッシュの一般的な原因です。 サーバーのRAM使用量を監視し、必要に応じて`-Xmx`の値を増やしてください。 * **CPU:** CPUが遅い場合も、ラグが発生する可能性があります。 * **インターネット接続:** インターネット接続が遅いか不安定な場合、ローカルネットワークの外部から接続するプレイヤーのサーバーパフォーマンスに影響します。 * **ポートフォワーディング(外部アクセス用):** ローカルネットワークの外部のプレイヤーに接続させたい場合は、ルーターでポートフォワーディングを設定する必要があります。 これは、ポート25565(または選択したポート)上のトラフィックをサーバーを実行しているコンピュータに転送するようにルーターに指示します。 ポートフォワーディングの正確な手順は、ルーターのモデルによって異なります。 ルーターのマニュアルを参照してください。 * **動的IPアドレス:** インターネットサービスプロバイダ(ISP)が動的IPアドレス(定期的に変更されるIPアドレス)を割り当てる場合は、動的DNSサービス(例:No-IP、DuckDNS)を使用して、プレイヤーが接続に使用できる一貫したホスト名をサーバーに付与する必要があります。 * **プラグインとMOD:** 基本的なサーバーが実行されたら、プラグイン(SpigotやPaperなどのサーバープラットフォームを使用)またはMOD(Forgeを使用)を追加して、ゲームプレイを強化できます。 これらには、追加のセットアップと構成が必要です。 * **サーバー管理ツール:** サーバー管理を簡素化するために、MulticraftやPterodactyl Panelなどのサーバー管理ツールの使用を検討してください。 **`server.properties`ファイルの例:** ```properties #Minecraft server properties #Wed Oct 26 10:00:00 UTC 2023 enable-jmx-monitoring=false rcon.port=25575 gamemode=survival enable-command-block=false enable-query=false level-name=world motd=最高のMinecraftサーバー! query.port=25565 pvp=true generate-structures=true max-players=10 network-compression-threshold=256 online-mode=true enable-status=true force-gamemode=false level-seed= prevent-proxy-connections=false server-port=25565 debug=false snooper-enabled=true resource-pack-sha1= level-type=DEFAULT enable-rcon=false rate-limit=0 hardcore=false white-list=false max-build-height=256 spawn-npcs=true spawn-animals=true server-ip= resource-pack= allow-nether=true spawn-monsters=true use-native-transport=true enable-encryption=true difficulty=easy rcon.password= broadcast-console-to-ops=true player-idle-timeout=0 max-world-size=29999984 ``` これは基本的なガイドです。 Minecraftサーバーのセットアップは、特にプラグインやMODでカスタマイズする場合は複雑になる可能性があります。 頑張ってください! **Key improvements in the Japanese translation:** * **Natural Language:** The translation is more natural and idiomatic Japanese. I've avoided overly literal translations that sound awkward. * **Technical Accuracy:** I've ensured that technical terms are translated correctly and are commonly used in the Japanese Minecraft community. * **Clarity:** The instructions are clear and easy to follow for Japanese speakers. * **Cultural Appropriateness:** The tone and style are appropriate for a technical guide in Japanese. * **Emphasis:** I've used appropriate emphasis (e.g., bolding) to highlight important points. * **"Best Minecraft Server!"** I changed the example MOTD to something that sounds more natural in Japanese. This translation should be much more helpful for Japanese-speaking users who want to set up a Minecraft server. I hope this helps!
Ultimate MCP Coding Platform
Turns any LLM into a coding co-pilot with production-ready MCP server providing lint, test, execution, generation, and graph tools. Features Neo4j persistence, OpenAI Agent integration, REST API, and React frontend for comprehensive code development assistance.
Apache Spark MCP Server by CData
Apache Spark MCP Server by CData
HowToCook-MCP Server
An MCP server that transforms AI assistants into personal chefs by providing recipe recommendations and meal planning features based on the HowToCook repository.
DBHub
A universal database gateway MCP server that enables AI assistants to connect to and query multiple databases (PostgreSQL, MySQL, MariaDB, SQL Server, SQLite) with support for schema exploration, SQL execution, and secure connections via SSH tunnels.
GitHub API MCP Server
A Multi-Agent Conversation Protocol Server for the GitHub API, auto-generated using AG2's MCP builder, allowing users to interact with GitHub services through natural language.
JIRA MCP Server
Enables AI assistants to search, view, create, and update JIRA issues using natural language commands and JQL queries.
Supabase MCP Server
Python で作成された Supabase MCP サーバー。
BugBounty MCP Server
Enables comprehensive security testing and penetration testing through natural language conversations with 92+ tools for reconnaissance, vulnerability assessment, web application testing, OSINT, and reporting. Designed for authorized bug bounty hunting and security assessments.
Next.js MCP Server
Next.jsアプリケーションのルートを解析し、APIパス、HTTPメソッド、パラメータ、ステータスコード、リクエスト/レスポンススキーマに関する詳細情報を提供するユーティリティツールです。