Discover Awesome MCP Servers

Extend your agent with 60,922 capabilities via MCP servers.

All60,922
Pelaris

Pelaris

Connect Pelaris to any MCP-compatible AI assistant for personalised fitness coaching. Plan training programs, log workouts, track benchmarks, manage goals, and get data-driven coaching insights. Supports science-based methodologies including 5/3/1, Pfitzinger, polarised training, and more. OAuth 2.0 authentication with Streamable HTTP transport. Documentation: https://pelaris.io/integrations Web

cwe-search_mcp

cwe-search_mcp

Enables querying MITRE's Common Weakness Enumeration database for vulnerability information, supporting CWE lookup, search, taxonomy navigation, and relationship mapping through MCP.

blizzard-wow-mcp

blizzard-wow-mcp

Auction house analytics, market intelligence, crafting optimization, inventory valuation, farming routes, guild analytics, and token tracking — all through the Model Context Protocol.

MCPStudio: The Postman for Model Context Protocol

MCPStudio: The Postman for Model Context Protocol

For MCP (Minecraft Protocol) servers, using Postman directly isn't the typical workflow. The Minecraft protocol is a binary protocol, not a standard HTTP protocol that Postman is designed for. Postman excels at sending and receiving HTTP requests and displaying JSON, XML, or other text-based responses. However, you can use Postman in conjunction with a custom script or proxy to interact with an MCP server. Here's a breakdown of the approaches and considerations: **Why Postman Isn't Directly Compatible:** * **Binary Protocol:** The Minecraft protocol uses a custom binary format for communication. Postman is designed for text-based protocols like HTTP. * **Authentication:** Minecraft authentication is handled differently than standard web authentication. * **Stateful Connection:** Minecraft connections are typically stateful, maintaining a persistent connection between the client and server. Postman is designed for stateless requests. **Possible Approaches (with varying levels of complexity):** 1. **Custom Script/Proxy:** This is the most common and flexible approach. * **Concept:** You create a script (e.g., in Python, Node.js, Java) that acts as a proxy. This script: * Listens for HTTP requests from Postman. * Translates those HTTP requests into the appropriate Minecraft protocol packets. * Sends the packets to the MCP server. * Receives responses from the MCP server. * Translates the responses back into a format Postman can understand (e.g., JSON). * Sends the JSON response back to Postman. * **Example (Conceptual Python using `mcstatus` library):** ```python from flask import Flask, request, jsonify from mcstatus import JavaServer app = Flask(__name__) @app.route('/minecraft/status', methods=['GET']) def get_minecraft_status(): server_address = request.args.get('address', 'localhost:25565') # Get server address from Postman try: server = JavaServer.lookup(server_address) status = server.status() return jsonify({ "online": True, "players_online": status.players.online, "players_max": status.players.max, "version": status.version.name, "motd": status.description }) except Exception as e: return jsonify({"online": False, "error": str(e)}) if __name__ == '__main__': app.run(debug=True, port=5000) ``` * **Explanation:** * This Python code uses Flask to create a simple web server. * It uses the `mcstatus` library to query a Minecraft server. * The `/minecraft/status` endpoint accepts a server address as a query parameter. * It returns a JSON response with the server status. * **Postman Setup:** * In Postman, you would send a GET request to `http://localhost:5000/minecraft/status?address=yourserver.com:25565`. * Postman would display the JSON response from the Python script. * **Libraries:** * **Python:** `mcstatus`, `nbt`, `pymclevel` (for level data) * **Node.js:** `minecraft-protocol`, `prismarine-nbt` * **Java:** `minecraft-server-util` (for status pings), custom packet handling * **Pros:** Most flexible, allows you to implement any Minecraft protocol interaction. * **Cons:** Requires significant programming effort. You need to understand the Minecraft protocol. 2. **Pre-built Minecraft API (if available):** * Some Minecraft server implementations (e.g., some modded servers) might expose a REST API. If so, you can use Postman to interact with that API directly. * **Check the server documentation** to see if an API exists. * **Pros:** Easiest if an API is available. * **Cons:** Relies on the server providing an API, which is not standard. 3. **Wireshark (for Packet Analysis):** * While not directly using Postman, you can use Wireshark to capture and analyze the raw Minecraft protocol packets being sent between a Minecraft client and server. * This is useful for understanding the protocol and debugging your own implementations. * **Pros:** Excellent for understanding the protocol. * **Cons:** Doesn't allow you to send custom packets. **Important Considerations:** * **Minecraft Protocol Version:** The Minecraft protocol changes with each version of Minecraft. Make sure your script or library supports the correct version. * **Authentication:** You'll need to handle Minecraft authentication if you want to interact with a server that requires it. This typically involves using the Mojang authentication API. * **Server Security:** Be careful when sending custom packets to a Minecraft server. Malicious packets could potentially crash the server or cause other problems. * **Rate Limiting:** Some servers may have rate limits to prevent abuse. Be mindful of these limits when sending requests. **In summary:** Postman is not a direct tool for interacting with Minecraft servers due to the binary protocol. You'll need to use a custom script or proxy to translate between HTTP requests (from Postman) and the Minecraft protocol. The `mcstatus` library (in Python) provides a simple example for getting server status. For more complex interactions, you'll need to delve deeper into the Minecraft protocol and use more advanced libraries. If the server provides a REST API, that's the easiest way to interact with it using Postman. --- **Chinese Translation (Summary):** 由于 Minecraft 服务器使用二进制协议,Postman 无法直接与之交互。你需要使用自定义脚本或代理来在 HTTP 请求(来自 Postman)和 Minecraft 协议之间进行转换。`mcstatus` 库(在 Python 中)提供了一个获取服务器状态的简单示例。对于更复杂的交互,你需要深入研究 Minecraft 协议并使用更高级的库。如果服务器提供了 REST API,那是使用 Postman 与之交互的最简单方法。 (Simplified Chinese) 由于 Minecraft 服务器使用二进制协议,Postman 无法直接与之交互。你需要使用自定义脚本或代理来在 HTTP 请求(来自 Postman)和 Minecraft 协议之间进行转换。`mcstatus` 库(在 Python 中)提供了一个获取服务器状态的简单示例。对于更复杂的交互,你需要深入研究 Minecraft 协议并使用更高级的库。如果服务器提供了 REST API,那是使用 Postman 与之交互的最简单方法。

MCP Weather Server

MCP Weather Server

A Model Context Protocol server that provides tools to fetch weather alerts for US states and forecasts based on latitude/longitude coordinates using the US National Weather Service API.

doings-evidence-mcp

doings-evidence-mcp

This MCP server provides critical evidence assessment for organization-design, leadership and transformation claims, enabling users to critique consulting text, check claims against research, and generate safer phrasing.

Open States API MCP Server

Open States API MCP Server

This MCP server enables interaction with the Open States API, allowing users to access legislative data from US state governments through natural language commands.

MCP-Crawl4AI

MCP-Crawl4AI

A Model Context Protocol server that enables AI systems to crawl and scrape the live web using Crawl4AI and headless Chromium. It provides tools for structured data extraction, deep site traversal, and session-aware workflows with LLM-optimized outputs like markdown.

Inoreader MCP Server

Inoreader MCP Server

Enables intelligent RSS feed management and analysis through Inoreader integration. Supports reading articles, search, bulk operations, and AI-powered content analysis including summarization, trend analysis, and sentiment analysis.

meong-care-mcp

meong-care-mcp

A pet care MCP server that helps record and analyze daily care, diet, and symptoms for dogs, offering food safety checks, risk classification, care recommendations, and vet visit summaries.

Littlebird Obsidian MCP

Littlebird Obsidian MCP

A local-first MCP server that routes Littlebird daily context into structured Obsidian notes, connecting daily work to a durable knowledge base.

Arthor-Agent

Arthor-Agent

AI agent for security teams: automate assessment of documents, questionnaires & reports. Multi-format parsing, RAG knowledge base, OpenAI/Ollama. Risks, compliance gaps, remediations. MIT.

Student Progress Tracker MCP Server

Student Progress Tracker MCP Server

Enables AI assistants to manage student profiles, track assessments, calculate topic mastery, identify learning gaps, and recommend focus areas. Integrates with Claude Desktop and Claude Code for interactive learning analytics.

mcp-discord

mcp-discord

An MCP server providing 26 tools for Discord API interactions, enabling message management, moderation, channel operations, and server inspection through Claude Code, Paperclip agents, or other MCP-compatible clients.

EU5MinerMCP

EU5MinerMCP

MCP server for inspecting and interacting with Europa Universalis V game installs and mods, including file browsing, entity queries, diplomacy and religion reports, and mod update workflows.

@depthark/css-first

@depthark/css-first

This server integrates with Mozilla Developer Network (MDN) documentation to suggest CSS properties, check browser support, and provide implementation guidance with user consent mechanisms.

Enterprise Knowledge MCP Server

Enterprise Knowledge MCP Server

Enables querying enterprise documents (DOCX, PDF, PPTX) using natural language, with hybrid search and MCP integration for Claude Desktop and other agents.

Claude Jester MCP

Claude Jester MCP

Transforms Claude from a code generator into a programming partner capable of testing, debugging, and optimizing code automatically through a secure execution environment.

codeql-development-mcp-server

codeql-development-mcp-server

Enables AI-assisted development of CodeQL queries for security analysis through the Model Context Protocol. Provides tools for compiling, testing, and executing CodeQL queries across multiple programming languages.

Sonarr & Radarr MCP Server

Sonarr & Radarr MCP Server

Enables interaction with Sonarr and Radarr APIs to query media libraries, check recent additions, view upcoming releases, manage download queues, and perform searches for TV shows and movies through natural language.

My MCP Server

My MCP Server

An extensible TypeScript-based MCP server designed for Claude Code with a modular architecture for easily adding custom tools. It includes built-in examples like a calculator and echo tool, utilizing Zod for robust input validation and error handling.

flow-mcp

flow-mcp

A minimal MCP server that provides business control primitives (finish, pause, resume, rewind, abort) for agent/skill orchestration, persisting actionable facts into structured state files.

Semantic Search MCP Server

Semantic Search MCP Server

Enables AI agents to perform semantic search over codebases by converting natural language queries into efficient search patterns like grep and ripgrep. It utilizes LLMs to verify relevance and find code snippets that traditional keyword-based searches might miss.

Chronicle MCP

Chronicle MCP

Chronicle is a secure, local-first MCP server designed to transform your historical AI chat logs into a persistent memory vault. It seamlessly parses and indexes raw conversation exports from ChatGPT, Claude, and various IDE transcripts directly on your machine. By utilizing dynamic token-stripping, the engine automatically cleans redundant syntax wrappers to save up to 40%

Tea Rags MCP

Tea Rags MCP

A high-performance MCP server for semantic search and codebase indexing using the Qdrant vector database. It features optimized embedding pipelines, AST-aware chunking, and git metadata enrichment for fast, privacy-focused local or remote search.

Ordinal-MCP

Ordinal-MCP

Implements a structured communication bus that allows AI agents to send 'oracle calls' to human operators for resolving complex decisions or judgment calls. It facilitates hierarchical message passing between agents and humans using a file-based request/response system with interaction history archiving.

GoHighLevel MCP Server

GoHighLevel MCP Server

Connects Claude Desktop directly to GoHighLevel CRM accounts with 269+ tools across contacts, messaging, opportunities, calendars, marketing automation, e-commerce, and business operations management.

Cloud Translation API MCP Server

Cloud Translation API MCP Server

An MCP (Multi-Agent Conversation Protocol) Server that enables AI agents to interact with Google's Cloud Translation API for translating text between languages.

interzoid-mcp-server

interzoid-mcp-server

MCP server exposing 29 AI-powered Interzoid data quality APIs — company/name/address matching and deduplication, business intelligence, email trust scoring, data standardization, verification, translation, and more. Supports API key authentication and x402 crypto micropayments.

AdsTurbo Creative MCP

AdsTurbo Creative MCP

A local-only MCP server for AI video ad planning. It helps AI agents build video ad briefs, hooks, UGC scripts, storyboards, variation plans, script reviews, and AdsTurbo-ready prompts without calling AdsTurbo internal services.