Discover Awesome MCP Servers

Extend your agent with 27,188 capabilities via MCP servers.

All27,188
Slack MCP Server

Slack MCP Server

Enables interaction with Slack workspaces to manage channels, post messages, add reactions, view message history and threads, and retrieve user profiles through the Model Context Protocol.

Interactive Brokers MCP Server

Interactive Brokers MCP Server

Enables real-time stock and options market data retrieval from Interactive Brokers through IB Gateway. Provides stock quotes with price and volume information, plus options quotes with bid, ask, and last price data.

hearthstone-decks-mcp

hearthstone-decks-mcp

A Hearthstone deck parsing server that decodes deck codes into detailed card lists, images, and mana curve statistics. It provides tools for searching specific cards and retrieving metadata via the Model Context Protocol.

MapleStory MCP Server

MapleStory MCP Server

Provides structured access to Nexon's MapleStory Open API, allowing users to query character stats, equipment, Union systems, and guild data. It also enables AI assistants to retrieve game rankings, enhancement probabilities, and official game announcements.

AI Helper MCP Server

AI Helper MCP Server

A server that allows AI agents to consult multiple large language models (like Grok, Gemini, Claude, GPT-4o) through Model Context Protocol for assistance and information.

TypeScript MCP Server Boilerplate

TypeScript MCP Server Boilerplate

A boilerplate project for quickly developing Model Context Protocol servers using TypeScript SDK, with example tools (calculator, greetings) and resources pre-implemented.

Sefaria Jewish Library

Sefaria Jewish Library

대규모 언어 모델이 표준화된 인터페이스를 통해 세파리아 라이브러리에서 유대교 텍스트와 주석을 검색할 수 있도록 합니다.

HubSpot MCP Server

HubSpot MCP Server

Provides comprehensive access to HubSpot's CRM API, enabling management of contacts, companies, deals, engagements, and associations with support for batch operations and advanced search capabilities.

PagePixels Screenshots MCP Server

PagePixels Screenshots MCP Server

Enables AI assistants to capture website screenshots, automate browser interactions, and manage recurring screenshot configurations across 150+ global locations. It also supports AI-powered domain research and visual change monitoring for any web page.

StockMCP

StockMCP

Provides real-time stock market data and financial analysis through Yahoo Finance integration. Enables users to get quotes, historical prices, fundamentals, dividends, analyst forecasts, and growth projections for any stock symbol.

GitHub MCP Server

GitHub MCP Server

GitHub API용 독립 실행형 MCP 서버

Solar2D MCP Server

Solar2D MCP Server

Enables AI assistants to run, debug, and interact with Solar2D projects by capturing Lua logs, taking screenshots, and simulating touch events. It streamlines game development through automated simulator configuration and real-time visual analysis.

IBM Informix MCP Server by CData

IBM Informix MCP Server by CData

IBM Informix MCP Server by CData

Localizable XStrings MCP Server

Localizable XStrings MCP Server

Provides tools for working with iOS Localizable.xcstrings files, enabling automated translation workflows and localization management for iOS/macOS projects using Xcode String Catalogs.

Gmail MCP Server

Gmail MCP Server

자바와 스프링 부트를 사용한 Gmail MCP 서버

Mermaid MCP Server

Mermaid MCP Server

Enables agents to analyze codebases (local or GitHub) and automatically generate Mermaid diagrams rendered as PNG images via Kroki, providing visual understanding of project structure and flow through file discovery, reading, and diagram generation.

Adobe Commerce Support MCP Server

Adobe Commerce Support MCP Server

Generates professional Adobe Commerce support responses from case findings. Supports both structured and mixed content formats with automatic categorization capabilities.

TiddlyWiki MCP Server

TiddlyWiki MCP Server

Provides AI assistants with access to TiddlyWiki wikis via HTTP API, supporting tiddler management (create, update, delete, search) and semantic search capabilities using Ollama embeddings for natural language queries.

Weather MCP Server

Weather MCP Server

A JavaScript ES Modules server that provides weather information including alerts and forecasts for US locations using the National Weather Service API.

VibeCheck MCP Server

VibeCheck MCP Server

An AI-powered security audit tool that analyzes codebases for vulnerabilities using real-time data from MITRE CWE and npm audit. It enables deep analysis of authentication, API security, and dependencies to provide structured findings and remediation steps.

aica - AI Code Analyzer

aica - AI Code Analyzer

aica(AI 코드 분석기)는 AI를 사용하여 코드를 검토합니다. CLI 및 GitHub Actions를 지원합니다.

Vercel MCP Template

Vercel MCP Template

A template for deploying MCP servers on Vercel with example tools for rolling dice and fetching weather data. Provides a starting point for building custom MCP servers with TypeScript.

example-mcp-server

example-mcp-server

제공해 주신 정보가 부족하여 Anthropic MCP 서버에 대한 예제 코드를 직접 제공하기 어렵습니다. "MCP"가 무엇을 의미하는지, 어떤 프로그래밍 언어를 사용하고 있는지, 어떤 기능을 구현하고 싶은지에 대한 추가 정보가 필요합니다. 하지만, Anthropic API를 사용하는 기본적인 예제 코드를 제공해 드릴 수 있습니다. 이 코드는 Anthropic API를 사용하여 텍스트를 생성하는 방법을 보여줍니다. **Python 예제 (Anthropic API 사용):** ```python import anthropic # Anthropic API 키를 설정합니다. ANTHROPIC_API_KEY = "YOUR_ANTHROPIC_API_KEY" # 여기에 실제 API 키를 입력하세요. client = anthropic.Anthropic(api_key=ANTHROPIC_API_KEY) def generate_text(prompt): """ Anthropic API를 사용하여 텍스트를 생성합니다. Args: prompt: 생성할 텍스트의 프롬프트입니다. Returns: 생성된 텍스트입니다. """ try: response = client.completions.create( model="claude-v1.3", # 사용할 모델을 지정합니다. prompt=f"{anthropic.HUMAN_PROMPT} {prompt}{anthropic.AI_PROMPT}", max_tokens_to_sample=200, # 생성할 최대 토큰 수를 지정합니다. ) return response.completion except Exception as e: print(f"오류 발생: {e}") return None # 예제 사용 prompt = "고양이의 특징에 대해 설명해주세요." generated_text = generate_text(prompt) if generated_text: print(f"생성된 텍스트:\n{generated_text}") ``` **설명:** 1. **`anthropic` 라이브러리 임포트:** Anthropic API를 사용하기 위해 필요한 라이브러리를 임포트합니다. 2. **API 키 설정:** `ANTHROPIC_API_KEY` 변수에 Anthropic API 키를 설정합니다. **절대로 API 키를 코드에 직접 포함시키지 마세요!** 환경 변수나 보안 저장소를 사용하는 것이 좋습니다. 3. **`generate_text` 함수:** * 프롬프트를 인자로 받습니다. * `client.completions.create` 메서드를 사용하여 Anthropic API에 요청을 보냅니다. * `model` 파라미터는 사용할 모델을 지정합니다. (예: "claude-v1.3") * `prompt` 파라미터는 생성할 텍스트의 프롬프트입니다. `anthropic.HUMAN_PROMPT`와 `anthropic.AI_PROMPT`를 사용하여 프롬프트를 구성합니다. * `max_tokens_to_sample` 파라미터는 생성할 최대 토큰 수를 지정합니다. * API 응답에서 생성된 텍스트를 반환합니다. * 오류가 발생하면 오류 메시지를 출력하고 `None`을 반환합니다. 4. **예제 사용:** * 프롬프트를 정의합니다. * `generate_text` 함수를 호출하여 텍스트를 생성합니다. * 생성된 텍스트를 출력합니다. **주의 사항:** * **Anthropic API 키:** Anthropic API를 사용하려면 API 키가 필요합니다. Anthropic 웹사이트에서 API 키를 얻을 수 있습니다. * **모델:** 사용할 모델을 선택해야 합니다. `model` 파라미터를 사용하여 모델을 지정합니다. Anthropic은 다양한 모델을 제공하며, 각 모델은 성능과 비용이 다릅니다. * **프롬프트 엔지니어링:** 프롬프트는 생성되는 텍스트의 품질에 큰 영향을 미칩니다. 명확하고 구체적인 프롬프트를 사용하는 것이 좋습니다. * **토큰 제한:** `max_tokens_to_sample` 파라미터를 사용하여 생성할 최대 토큰 수를 제한할 수 있습니다. 토큰 수가 많을수록 비용이 증가합니다. * **오류 처리:** API 호출 중에 오류가 발생할 수 있습니다. 오류 처리를 구현하여 애플리케이션이 예상대로 작동하도록 해야 합니다. **Anthropic MCP 서버에 대한 더 자세한 정보를 제공해 주시면 더 구체적인 예제 코드를 제공해 드릴 수 있습니다.** 예를 들어, 다음 정보를 알려주세요: * **MCP가 무엇을 의미하는가?** (예: Message Control Protocol, Media Conversion Platform 등) * **어떤 프로그래밍 언어를 사용하고 있는가?** (예: Python, Node.js, Go 등) * **어떤 기능을 구현하고 싶은가?** (예: 메시지 라우팅, 미디어 변환, 사용자 인증 등) * **Anthropic API를 어떻게 활용하고 싶은가?** (예: 텍스트 생성, 텍스트 분석, 코드 생성 등) 이러한 정보를 바탕으로 더 정확하고 유용한 예제 코드를 제공해 드리겠습니다.

kmux

kmux

A terminal emulator MCP server specifically engineered for LLMs with block-oriented design that organizes command input/output into recognizable blocks and semantic session management. Enables AI to efficiently use terminals for writing code, installing software, and executing commands without context overflow.

Prompt Registry MCP

Prompt Registry MCP

A lightweight, file-based server for managing and serving personal prompt templates with variable substitution support via the Model Context Protocol. It allows users to store, update, and organize prompts in a local directory through integrated MCP tools and CLI assistants.

ShowDoc MCP Server

ShowDoc MCP Server

Automatically fetches API documentation from ShowDoc and generates Android code including Entity classes, Repository patterns, and Retrofit interfaces.

PG_MCP_SERVER

PG_MCP_SERVER

Weather Query MCP Server

Weather Query MCP Server

사용자가 지정한 도시에 대한 온도, 습도, 풍속 및 날씨 설명을 포함한 날씨 정보를 가져와 표시할 수 있는 MCP 서버 구현.

Web-LLM MCP Server

Web-LLM MCP Server

A server that enables browser-based local LLM inference using Playwright to automate interactions with @mlc-ai/web-llm, supporting text generation, chat sessions, model switching, and status monitoring.

Zoom API MCP Server

Zoom API MCP Server

An MCP Server that enables interaction with Zoom's API through the Multi-Agent Conversation Protocol, allowing users to access and control Zoom's functionality via natural language commands.