Discover Awesome MCP Servers

Extend your agent with 26,759 capabilities via MCP servers.

All26,759
Swagger MCP

Swagger MCP

An MCP server that connects to a Swagger specification and helps an AI to build all the required models to generate a MCP server for that service.

LLM Server

LLM Server

다른 LLM에 접근 권한을 제공하는 MCP 서버

Airbnb Search & Listings

Airbnb Search & Listings

Enables users to search Airbnb listings with advanced filtering options and retrieve detailed property information through an MCP server interface.

MCP Server

MCP Server

An implementation of the Model Context Protocol (MCP) server that enables multiple clients to connect simultaneously and handles basic context management and messaging with an extendable architecture.

Dice MCP Server

Dice MCP Server

Provides comprehensive TRPG dice rolling functionality including standard notation, advantage/disadvantage mechanics, and success-counting dice pools. It enables users to perform complex dice logic and track roll history through an MCP-compliant interface.

Dedalus MCP Documentation Server

Dedalus MCP Documentation Server

Enables AI-powered querying and serving of markdown documentation with search, Q\&A capabilities, and document analysis. Built for the YC Agents Hackathon with OpenAI integration and rate limiting protection.

Attendee MCP Server

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.

JVLink MCP Server

JVLink MCP Server

Enables natural language queries and analysis of Japanese horse racing data from JRA-VAN without writing SQL. Supports analyzing race results, jockey performance, breeding trends, and track conditions through conversation with Claude.

Azure Kusto MCP Server

Azure Kusto MCP Server

Azure Kusto용 MCP 서버

build-simple-mcp

build-simple-mcp

Okay, here's a guide on how to build a simple Minecraft (MCP) server. Keep in mind that "MCP" usually refers to the Minecraft Coder Pack, which is used for modding. I'll assume you want to set up a basic, *unmodded* Minecraft server. If you *do* want to set up a modded server, please specify which mod loader (Forge, Fabric, etc.) and I can provide more specific instructions. Here's how to set up a basic, vanilla Minecraft server: **1. Prerequisites:** * **Java:** You need Java installed. Minecraft servers require Java 8 or higher. It's generally recommended to use the latest version of Java. You can download it from [https://www.oracle.com/java/technologies/javase-downloads.html](https://www.oracle.com/java/technologies/javase-downloads.html) or from a distribution like Adoptium (Eclipse Temurin) which is often preferred for its open-source nature: [https://adoptium.net/](https://adoptium.net/) * **Sufficient RAM:** The amount of RAM your server needs depends on the number of players and the complexity of the world. 2GB is a good starting point for a small server (5-10 players). Increase this as needed. * **A Computer:** This can be your personal computer, a dedicated server, or a cloud server (like AWS, Google Cloud, or Azure). Make sure it meets the minimum system requirements for Minecraft. * **Stable Internet Connection:** A good, stable internet connection is crucial for a smooth multiplayer experience. **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. Name it something descriptive, like "MinecraftServer". **4. Place the `minecraft_server.jar` File:** * Move the `minecraft_server.jar` file you downloaded into the "MinecraftServer" folder you just created. **5. Run the Server for the First Time:** * Open a command prompt or terminal window. * Navigate to the "MinecraftServer" directory using the `cd` command. For example: ```bash cd C:\MinecraftServer (Windows) cd /path/to/MinecraftServer (Linux/macOS) ``` * Run the following command to start the server: ```bash java -jar minecraft_server.jar nogui ``` * `java -jar` tells Java to execute the JAR file. * `minecraft_server.jar` is the name of the server file. * `nogui` disables the graphical user interface (GUI) for the server, which is generally recommended for performance. * The first time you run the server, it will generate some files and then stop. This is normal. It will also create an `eula.txt` file. **6. Accept the EULA:** * Open the `eula.txt` file in a text editor. * Change `eula=false` to `eula=true`. This indicates that you agree to the Minecraft End User License Agreement. **Read the EULA before accepting it!** **7. Configure the Server (Optional):** * The server creates a `server.properties` file. This file contains various settings that control how your server works. You can edit this file to customize your 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`: Whether to require players to authenticate with a Minecraft account (set to `false` for offline mode, but this is generally *not* recommended for security reasons). * `motd`: The message that appears in the Minecraft server list. **8. Run the Server Again:** * Go back to your command prompt or terminal window and run the same command as before: ```bash java -jar minecraft_server.jar nogui ``` * The server should now start up and generate the world. This may take a few minutes. **9. Connect to Your Server:** * Start Minecraft on your computer. * Click "Multiplayer". * Click "Add Server". * Enter a server name (anything you want). * Enter the server address. If you're running the server on the same computer you're playing on, the address is `localhost`. If you're running the server on a different computer, enter the IP address of that computer. If you're running it on a cloud server, use the public IP address of the server. * Click "Done". * Select your server from the list and click "Join Server". **10. Port Forwarding (If Necessary):** * If you want people outside of your local network to be able to connect to your server, you'll need to configure port forwarding on your router. This process varies depending on your router model. You'll need to forward port 25565 (or the port you specified in `server.properties`) to the internal IP address of the computer running the server. **Be very careful when configuring port forwarding, as it can expose your network to security risks.** Only forward the necessary ports. **11. Server Management:** * You can use the command prompt or terminal window to send commands to the server. For example, you can use the `op <playername>` command to give a player operator privileges. * There are also various server management tools available that can make it easier to manage your server. **Important Considerations:** * **Security:** Running a Minecraft server can expose your computer and network to security risks. Make sure you have a strong password, keep your software up to date, and be careful about who you give operator privileges to. Consider using a firewall. * **Performance:** The performance of your server depends on the hardware it's running on and the number of players. If you experience lag, you may need to upgrade your hardware or reduce the number of players. Consider using server optimization mods or plugins if you're running a modded server. * **Backups:** Regularly back up your server world to prevent data loss. **Korean Translation of Key Terms:** * **Server:** 서버 (Seo-beo) * **Minecraft:** 마인크래프트 (Ma-in-keu-ra-peu-teu) * **Java:** 자바 (Ja-ba) * **RAM:** 램 (Raem) * **IP Address:** IP 주소 (IP Ju-so) * **Port:** 포트 (Po-teu) * **Command Prompt/Terminal:** 명령 프롬프트/터미널 (Myeong-ryeong Peu-rom-peu-teu / Teo-mi-neol) * **Directory/Folder:** 디렉토리/폴더 (Di-reok-to-ri / Pol-deo) * **Configuration:** 구성 (Gu-seong) * **World:** 월드 (Wol-deu) * **Multiplayer:** 멀티플레이어 (Meol-ti-peu-lle-i-eo) * **Operator:** 운영자 (Un-yeong-ja) * **Security:** 보안 (Bo-an) * **Performance:** 성능 (Seong-neung) * **Backup:** 백업 (Baek-eop) * **Download:** 다운로드 (Da-un-ro-deu) * **Install:** 설치 (Seol-chi) * **Run:** 실행 (Sil-haeng) * **Edit:** 편집 (Pyeon-jip) * **Connect:** 연결 (Yeon-gyeol) * **Firewall:** 방화벽 (Bang-hwa-byeok) This should get you started with a basic Minecraft server. Good luck! Let me know if you have any other questions. If you want to set up a *modded* server, please tell me which mod loader you want to use (Forge, Fabric, etc.).

AutoBrowser MCP

AutoBrowser MCP

Autobrowser MCP는 AI 애플리케이션이 사용자의 브라우저를 제어할 수 있도록 하는 모델 컨텍스트 제공자(MCP) 서버입니다.

Blabber-MCP

Blabber-MCP

OpenAI의 텍스트 음성 변환 API를 사용하여 LLM이 텍스트에서 음성 오디오를 생성할 수 있도록 하는 MCP 서버이며, 다양한 음성, 모델 및 오디오 형식을 지원합니다.

GalaConnect MCP Server

GalaConnect MCP Server

LLM과 함께 사용할 수 있는 Galachain MCP 서버

Aisera MCP Servers

Aisera MCP Servers

Repo to hold Aisera Public MCP Servers

Feather Code MCP Server

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

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-NAVER-Map

네이버 지도 MCP 서버

rootvine-mcp

rootvine-mcp

Cross-platform music link resolution for AI agents. Resolve any song or album across Spotify, Apple Music, Amazon, YouTube, and more. Returns affiliate-ready links with click tracking

US Government Open Data MCP

US Government Open Data MCP

MCP server + TypeScript SDK for 36 U.S. government data APIs — 188 tools. Treasury, FRED, Congress, FDA, CDC, FEC, lobbying, and more. Works with VS Code Copilot, Claude Desktop, Cursor.

Cloudflare Playwright MCP

Cloudflare Playwright MCP

Enables AI assistants to control a browser through Playwright and Cloudflare Workers, allowing web automation tasks like navigation, typing, clicking, and taking screenshots through natural language instructions.

Shopify Python MCP Server

Shopify Python MCP Server

Shopify API와 통합되어 Claude 데스크톱 사용자가 Shopify 스토어의 제품 정보를 검색하고 조작할 수 있도록 하는 MCP 서버

Concurrent Browser MCP

Concurrent Browser MCP

A concurrent browser MCP server that supports multiple parallel browser instances

YouTrack MCP Server

YouTrack MCP Server

A comprehensive Model Context Protocol server that provides AI agents with 44 tools to manage JetBrains YouTrack issues, sprints, and projects via the REST API. It supports full YouTrack query language and works with both Cloud and Server instances for complete project management integration.

ABSD DevOps MCP Server

ABSD DevOps MCP Server

Enables secure local filesystem operations and interactive terminal sessions for AI assistants. Provides 12 tools for file management, directory operations, code searching, and running interactive REPLs with security protections.

A sample MCP server for understanding cloud spend

A sample MCP server for understanding cloud spend

AWS Cost Explorer 및 CloudWatch Logs용 관리형 제어 평면 (MCP)

Substreams Search MCP Server

Substreams Search MCP Server

MCP server that lets AI agents search the substreams.dev package registry.

AI Naming Standard MCP Server

AI Naming Standard MCP Server

Enables automatic generation and validation of standardized file names using AI-driven conventions for microservices architecture. Supports multi-language naming with structured components like microservice, layer, domain, and action identifiers.

ClawHire MCP

ClawHire MCP

An employer-facing MCP server that enables hiring managers to post jobs, search for candidates, and manage applications through natural language conversation. It integrates with WonderCV's hiring infrastructure and features a unique system for identifying and filtering talent with AI-agent fluency.

Color Scheme Generator MCP Server

Color Scheme Generator MCP Server

Generates harmonious color schemes for design projects using The Color API, offering eight different palette generation methods including monochrome, analogic, complement, triad, and quad schemes.

WYGIWYH Expense Tracking MCP Server

WYGIWYH Expense Tracking MCP Server

Enables AI agents to interact with the WYGIWYH expense tracking API through 75 dynamically generated MCP tools. Supports comprehensive financial operations including transaction management, account handling, recurring expenses, and investment tracking.