Discover Awesome MCP Servers

Extend your agent with 28,614 capabilities via MCP servers.

All28,614
Anki MCP Server

Anki MCP Server

거울

AWS Documentation MCP Server

AWS Documentation MCP Server

Enables users to access, search, and get recommendations from AWS documentation through natural language queries. Supports both global AWS documentation and AWS China documentation with tools to fetch pages, search content, and discover related resources.

MCP Server Tutorial

MCP Server Tutorial

Crestron Home MCP Server

Crestron Home MCP Server

Enables LLMs to discover and control Crestron Home automation systems through natural language, including lights, shades, scenes, thermostats, and sensors with multi-language support and fuzzy device name matching.

Remote MCP Server

Remote MCP Server

A server implementation of the Model Context Protocol (MCP) that runs on Cloudflare Workers, enabling AI assistants like Claude to securely access external tools and APIs through OAuth authentication.

KiotViet MCP Server

KiotViet MCP Server

Enables AI assistants to manage KiotViet retail and F\&B operations including products, orders, customers, invoices, and inventory through the Public API. Features 36 integrated tools with automatic token refresh, middleware chain support, and configurable presets for different access levels.

Investidor10 MCP Server

Investidor10 MCP Server

Investidor10 MCP Server

Netfluid

Netfluid

The Netfluid skill provides AI agents with comprehensive banking and cryptocurrency wallet operations. It enables agents to manage fiat and crypto accounts, perform transfers, create payment bridges, and handle KYC verification — all through a unified MCP interface.

MCPez - 微服务命令代理管理平台

MCPez - 微服务命令代理管理平台

마이크로 통합 MCP 서버

die-mcp

die-mcp

Detect It Easy (DIE) MCP 서버

Codemend MCP Server

Codemend MCP Server

Connects AI tools directly to Codemend production error monitoring to list, analyze, and resolve software crashes. It enables users to retrieve AI-generated fixes and automatically open GitHub pull requests to address production issues.

Polarion MCP Servers

Polarion MCP Servers

Polarion용 MCP 서버

Model Context Protocol .NET Template

Model Context Protocol .NET Template

이 저장소는 .NET에서 MCP(Model Context Protocol) 애플리케이션을 만들기 위한 템플릿을 포함하고 있습니다.

db-mcp

db-mcp

데이터베이스 모델 컨텍스트 프로토콜 (DB-MCP) 서버

mcp-calculator

mcp-calculator

An MCP server that integrates the MathJS library to provide AI models with advanced calculation capabilities, including support for complex numbers, matrices, and unit conversions. It supports both stdio and HTTP transports for seamless integration with clients like Claude Desktop and GitHub Copilot.

Jira MCP Server

Jira MCP Server

Connects Jira with Claude, enabling users to search issues, view issue details, update issues, add comments, and retrieve project information through natural language commands.

Unofficial WCA MCP Server

Unofficial WCA MCP Server

Enables AI assistants to access World Cube Association speedcubing data including world records, competitor profiles, competition information, and championship results. Supports queries about rankings, competition schedules, and detailed speedcubing statistics through natural language.

Azure DevOps MCP Server

Azure DevOps MCP Server

Enables interaction with Azure DevOps work items through AI assistants like VS Code/GitHub Copilot. Supports fetching work item details and updating work item statuses using natural language commands.

Demo de MCP Servers con Chainlit

Demo de MCP Servers con Chainlit

Model Context Protocol (MCP) Server Project

Model Context Protocol (MCP) Server Project

FastMCP Development Assistant

FastMCP Development Assistant

Provides comprehensive development tools for FastMCP projects including documentation access, NPM package version management, and TypeScript type definitions retrieval. Enables developers to fetch FastMCP documentation, analyze NPM packages, and access MCP architecture information through natural language.

Google Search Tool

Google Search Tool

Enables AI assistants to perform real-time Google searches with anti-bot protection. Bypasses search engine restrictions using advanced browser automation to extract search results locally without requiring paid API services.

mcp_docs_server

mcp_docs_server

## MCP 서버 구축 도우미 MCP (Minecraft Coder Pack) 서버 구축을 도와드리겠습니다. MCP 서버는 Minecraft 소스 코드를 디컴파일하고 수정하여 자신만의 모드를 개발하거나 기존 모드를 수정하는 데 사용됩니다. 다음은 MCP 서버 구축을 위한 단계별 가이드입니다. **1. 필요한 도구 설치:** * **Java Development Kit (JDK):** Minecraft 및 MCP는 Java로 작성되었으므로 JDK가 필요합니다. 최신 버전의 JDK를 설치하는 것이 좋습니다. [https://www.oracle.com/java/technologies/javase-downloads.html](https://www.oracle.com/java/technologies/javase-downloads.html) 에서 다운로드할 수 있습니다. * **Python:** MCP 스크립트는 Python으로 작성되었으므로 Python이 필요합니다. Python 3.x 버전을 설치하는 것이 좋습니다. [https://www.python.org/downloads/](https://www.python.org/downloads/) 에서 다운로드할 수 있습니다. * **MCP (Minecraft Coder Pack):** MCP는 Minecraft 소스 코드를 디컴파일하고 리컴파일하는 데 사용되는 도구입니다. [https://mcpbot.oceanlabs.cc/](https://mcpbot.oceanlabs.cc/) 에서 최신 버전의 MCP를 다운로드할 수 있습니다. **2. MCP 설치 및 설정:** 1. 다운로드한 MCP 압축 파일을 원하는 위치에 압축 해제합니다. 2. MCP 폴더로 이동합니다. 3. `conf` 폴더를 찾습니다. 4. `mcp.cfg` 파일을 텍스트 편집기로 엽니다. 5. 다음 설정을 확인하고 필요에 따라 수정합니다. * `ClientVersion`: 사용할 Minecraft 버전을 지정합니다. (예: `1.19.4`) * `ServerVersion`: 사용할 Minecraft 서버 버전을 지정합니다. (예: `1.19.4`) * `MCPDeobfuscate`: `true`로 설정하여 MCP가 코드를 디컴파일할 때 난독화 해제를 수행하도록 합니다. * `PythonDir`: Python 실행 파일의 경로를 지정합니다. (예: `C:\Python39\python.exe`) * `JavaDir`: Java 실행 파일의 경로를 지정합니다. (예: `C:\Program Files\Java\jdk-17.0.2\bin\java.exe`) 6. `mcp.cfg` 파일을 저장하고 닫습니다. **3. Minecraft 서버 파일 다운로드:** 1. `jars` 폴더를 찾습니다. 2. `minecraft_server.jar` 파일을 Minecraft 공식 웹사이트에서 다운로드하여 `jars` 폴더에 넣습니다. 다운로드할 Minecraft 버전은 `mcp.cfg` 파일에 설정한 `ServerVersion`과 일치해야 합니다. [https://www.minecraft.net/en-us/download/server](https://www.minecraft.net/en-us/download/server) 에서 다운로드할 수 있습니다. **4. MCP 환경 설정:** 1. 명령 프롬프트 또는 터미널을 열고 MCP 폴더로 이동합니다. 2. 다음 명령을 실행하여 MCP 환경을 설정합니다. ```bash python ./mcp.py update ``` 이 명령은 Minecraft 서버 파일을 다운로드하고 필요한 데이터를 추출합니다. 3. 다음 명령을 실행하여 Minecraft 서버 코드를 디컴파일합니다. ```bash python ./mcp.py decompile ``` 이 명령은 시간이 오래 걸릴 수 있습니다. **5. 서버 코드 수정 (선택 사항):** 1. 디컴파일된 서버 코드는 `src/minecraft_server` 폴더에 있습니다. 2. 원하는 대로 코드를 수정합니다. **6. 서버 코드 리컴파일:** 1. 명령 프롬프트 또는 터미널에서 MCP 폴더로 이동합니다. 2. 다음 명령을 실행하여 서버 코드를 리컴파일합니다. ```bash python ./mcp.py recompile ``` 이 명령은 수정된 코드를 다시 컴파일합니다. 3. 다음 명령을 실행하여 리컴파일된 코드를 패치합니다. ```bash python ./mcp.py reobfuscate ``` 이 명령은 코드를 다시 난독화하고 최종 서버 파일을 생성합니다. **7. 서버 실행:** 1. `jars` 폴더에서 `minecraft_server.jar` 파일을 찾습니다. 2. 명령 프롬프트 또는 터미널에서 `jars` 폴더로 이동합니다. 3. 다음 명령을 실행하여 서버를 시작합니다. ```bash java -Xmx1024M -Xms1024M -jar minecraft_server.jar nogui ``` `-Xmx1024M` 및 `-Xms1024M`은 서버에 할당할 최대 및 최소 메모리 양을 지정합니다. 필요에 따라 값을 조정할 수 있습니다. **문제 해결:** * **오류 메시지:** 오류 메시지를 주의 깊게 읽고 문제의 원인을 파악합니다. * **로그 파일:** MCP 로그 파일 (`logs` 폴더)을 확인하여 오류에 대한 자세한 정보를 얻습니다. * **온라인 커뮤니티:** Minecraft 및 MCP 관련 온라인 커뮤니티 (포럼, Discord 서버 등)에 질문하여 도움을 받습니다. **주의 사항:** * MCP는 복잡한 도구이며 사용하기 어려울 수 있습니다. * Minecraft 소스 코드를 수정하면 게임의 안정성에 영향을 미칠 수 있습니다. * Minecraft 최종 사용자 라이선스 계약 (EULA)을 준수해야 합니다. 이 가이드라인이 MCP 서버 구축에 도움이 되기를 바랍니다. 궁금한 점이 있으면 언제든지 질문하십시오.

Obsidian Diary MCP Server

Obsidian Diary MCP Server

Enables AI-powered journaling in Obsidian with dynamic reflection prompts generated from recent entries and automatic backlinks between related diary entries. Supports adaptive templates that learn from writing patterns and smart content similarity linking.

Getting Started with Create React App

Getting Started with Create React App

MCP 서버 테스트용 React 애플리케이션

mcp-kagi-search

mcp-kagi-search

npx를 사용하여 Kagi API를 위한 MCP 서버 구현. n8n에서 쉽게 실행할 수 있습니다.

File Operations MCP Server

File Operations MCP Server

Provides tools for common file processing operations including reading files, listing directories, searching across files, getting file info, and counting lines with built-in security features like path traversal protection.

mcp-4o-Image-Generator

mcp-4o-Image-Generator

mcp-4o-Image-Generator

Katana MCP Server

Katana MCP Server

Integrates ProjectDiscovery's Katana web crawler with Claude Desktop, enabling users to crawl websites, discover endpoints and hidden resources, extract JavaScript files, and perform reconnaissance with customizable depth, scope, and filtering options.

rust-mcp-tutorial

rust-mcp-tutorial

러스트로 MCP 서버 시험해보기