Discover Awesome MCP Servers

Extend your agent with 35,569 capabilities via MCP servers.

All35,569
Google Services MCP Server

Google Services MCP Server

Enables interaction with multiple Google services including Maps, Finance, Flights, Gmail, and Calendar through a unified interface. Provides comprehensive access to geocoding, stock data, flight information, email management, and calendar operations.

Lidarr MCP Server

Lidarr MCP Server

Enables interaction with Lidarr music collection management through natural language. Provides tools to list, get, create, update and delete artists, albums and tracks via Lidarr's API.

Databar MCP Server

Databar MCP Server

Enables AI assistants to interact with Databar.ai's data enrichment API, allowing discovery, configuration, and execution of data enrichments across hundreds of providers using natural language.

intelligence-api

intelligence-api

MCP server that wraps Shopify, Amazon, and Google Maps intelligence tools. AI agents pay autonomously in USDC on Base via x402 — no API keys or accounts needed.

Nmap MCP Server

Nmap MCP Server

Exposes Nmap network scanning capabilities through a Model Context Protocol (MCP) server, allowing users to perform various types of network scans including vulnerability assessment, service detection, and OS fingerprinting.

MCP Discord

MCP Discord

The most complete open-source MCP server for Discord — 80+ tools, dual-mode: integrated (plugin) or standalone

Sidvy MCP Server

Sidvy MCP Server

Provides AI tools with full access to the Sidvy note-taking API, enabling management of notes, todos, groups, and workspaces with search, filtering, and real-time synchronization capabilities.

Bug Bounty MCP Server

Bug Bounty MCP Server

Enables AI agents to generate and manage specialized bug bounty hunting workflows including reconnaissance, vulnerability testing, OSINT gathering, and file upload testing. Provides REST API endpoints for comprehensive security assessments with intelligence-driven vulnerability prioritization.

MySQL MCP Server (Optimized)

MySQL MCP Server (Optimized)

An MCP server for MySQL that enables users to execute SQL queries, inspect table structures, and explore database schemas through a clean, SOLID-based architecture. It includes built-in security validations to protect against dangerous operations and ensure safe interaction with database resources.

TypeScript Package Introspector (MCP Server)

TypeScript Package Introspector (MCP Server)

Brale API MCP Server

Brale API MCP Server

A Model Context Protocol server that provides a secure wrapper around the Brale API, enabling AI assistants to perform stablecoin issuance, transfers, account management, and other financial operations.

🚀 ⚡️ k6-mcp-server

🚀 ⚡️ k6-mcp-server

Feishu/Lark OpenAPI MCP

Feishu/Lark OpenAPI MCP

Enables AI assistants to interact with Feishu/Lark platform through comprehensive OpenAPI integration, supporting message management, document operations, calendar scheduling, group chats, Bitable operations, and more automation scenarios with dual authentication support.

Aoexl Sign

Aoexl Sign

Enables users to create, manage, and track electronic signing requests and templates through Claude Desktop and other MCP-compatible clients. Provides multi-tenant authentication with customer API keys for secure document workflow operations.

MCP Ollama Consult Server

MCP Ollama Consult Server

Enables consulting with local Ollama models for reasoning from alternative viewpoints. Supports sending prompts to Ollama models and listing available models on your local Ollama instance.

Todo MCP Server

Todo MCP Server

A minimal todo app MCP server for ChatGPT that exposes tools for managing tasks and provides an interactive HTML widget interface. It demonstrates how to build MCP servers with React-based UIs and includes development OAuth for ChatGPT connector setup.

Naver Search MCP Server

Naver Search MCP Server

Um servidor MCP que permite a busca de vários tipos de conteúdo (notícias, blogs, compras, imagens, etc.) através da API de busca da Naver.

Next MCP Server

Next MCP Server

An MCP server that enables LLMs to interact with NEXT structured data, providing tools for retrieving highlights and clusters.

mcpbin

mcpbin

A testing server for MCP client implementations that provides tools for echoing data, error handling, timing operations, data generation, LLM sampling, and user elicitations.

Hello MCP Server

Hello MCP Server

Here's a simple "Hello, World!" example using Minecraft Coder Pack (MCP), assuming you're setting up a basic mod: ```java package com.example.modid; // Replace with your mod's package import net.minecraft.init.Blocks; import net.minecraft.client.Minecraft; import net.minecraft.util.text.TextComponentString; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.event.FMLInitializationEvent; @Mod(modid = "examplemod", name = "Example Mod", version = "1.0") // Replace with your mod's ID, name, and version public class ExampleMod { @Mod.EventHandler public void init(FMLInitializationEvent event) { // Print to the console System.out.println("Hello Minecraft!"); // Send a message to the player's chat Minecraft.getMinecraft().player.sendMessage(new TextComponentString("Hello, World! From Example Mod!")); } } ``` **Explanation:** * **`package com.example.modid;`**: This defines the package for your mod. **Crucially, replace `com.example.modid` with your own unique package name.** A common practice is to use your domain name in reverse (e.g., `com.mydomain.mymod`). This helps prevent naming conflicts with other mods. * **`import ...;`**: These lines import necessary classes from the Minecraft and Forge APIs. * **`@Mod(...)`**: This annotation tells Forge that this class is a mod. * `modid = "examplemod"`: A unique identifier for your mod. **Replace `examplemod` with your own mod ID.** This *must* be lowercase and contain only letters, numbers, and underscores. * `name = "Example Mod"`: The human-readable name of your mod. * `version = "1.0"`: The version of your mod. * **`public class ExampleMod { ... }`**: This is the main class for your mod. * **`@Mod.EventHandler`**: This annotation marks the `init` method as an event handler. Forge will call this method when the game is initializing. * **`public void init(FMLInitializationEvent event) { ... }`**: This method is called during the initialization phase of the game. * `System.out.println("Hello Minecraft!");`: This prints "Hello Minecraft!" to the game's console. This is useful for debugging. * `Minecraft.getMinecraft().player.sendMessage(new TextComponentString("Hello, World! From Example Mod!"));`: This sends the message "Hello, World! From Example Mod!" to the player's chat window. `Minecraft.getMinecraft().player` gets the current player instance, and `sendMessage` sends the message. `TextComponentString` is used to create a simple text message. **How to Use (Simplified):** 1. **Set up your MCP environment:** Follow the instructions for setting up MCP for your desired Minecraft version. This usually involves downloading MCP, deobfuscating the Minecraft code, and setting up your development environment (like Eclipse or IntelliJ IDEA). 2. **Create the Java file:** Create a new Java file (e.g., `ExampleMod.java`) in the correct directory structure within your MCP source folder (e.g., `src/main/java/com/example/modid/`). 3. **Paste the code:** Paste the code above into the Java file, **remembering to change the `package`, `modid`, `name`, and `version` values.** 4. **Recompile and reobfuscate:** Use the MCP commands to recompile your code and reobfuscate it for distribution. 5. **Run Minecraft:** Place the compiled mod file (usually a `.jar` file) in your Minecraft's `mods` folder. Start Minecraft. 6. **Check the console and chat:** You should see "Hello Minecraft!" in the console and "Hello, World! From Example Mod!" in your chat window when the game loads. **Important Notes:** * **MCP Setup is Crucial:** This example assumes you have a properly configured MCP environment. Setting up MCP can be complex, so follow the official MCP documentation carefully. * **Forge:** This example uses Forge. Make sure you have the correct version of Forge installed and configured with MCP. * **Minecraft Version:** The code might need slight adjustments depending on the specific Minecraft version you are using. * **Error Handling:** This is a very basic example and doesn't include any error handling. In a real mod, you'll want to add error handling to make your mod more robust. * **Build System:** For larger mods, you'll want to use a build system like Gradle or Maven to manage dependencies and build your mod. This provides a starting point. From here, you can explore the Minecraft and Forge APIs to add more features to your mod.

Medical GraphRAG Assistant

Medical GraphRAG Assistant

Enables AI-powered medical information retrieval through FHIR clinical document search and GraphRAG-based exploration of medical entities and relationships. Combines vector search with knowledge graph queries for comprehensive healthcare data analysis.

MCP-Mealprep

MCP-Mealprep

Este projeto pega vários servidores MCP de locais do GitHub, empacota-os junto com o contêiner GHCR deste repositório e os inicia com docker-compose para serem executados como uma pilha de recursos de ML/IA.

Hyperliquid MCP Server

Hyperliquid MCP Server

Enables interaction with the Hyperliquid exchange to trade perpetuals, check positions, and manage risk through natural language. It provides tools for fetching real-time market data, tracking portfolio value, and executing orders with a focus on safety through default paper trading.

YubHub MCP Server

YubHub MCP Server

Turn any careers page into a structured job feed. Straight from Claude, Cursor or any MCP client.

pyslang-mcp

pyslang-mcp

Provides AI agents with compiler-backed, read-only context for Verilog and SystemVerilog projects using pyslang.

JADX-MCP-SERVER

JADX-MCP-SERVER

Um servidor de Protocolo de Contexto de Modelo que se conecta a um fork personalizado do JADX (JADX-AI) e permite que LLMs (Modelos de Linguagem Grandes) locais interajam com o código descompilado de aplicativos Android para assistência em engenharia reversa em tempo real.

leadpipe-mcp

leadpipe-mcp

AI-powered lead qualification engine. Ingest leads from any source, auto-enrich with company data, score 0-100 using weighted AI rules, and export to HubSpot, Pipedrive, Google Sheets, CSV, or JSON. 8 MCP tools + 3 resources.

MCP Learning Server

MCP Learning Server

A comprehensive educational server demonstrating Model Context Protocol capabilities for tools, resources, and prompts, allowing AI assistants to connect to external data and functionality.

Stella MCP Server

Stella MCP Server

Enables AI assistants to programmatically create, read, validate, and modify Stella system dynamics models in the XMILE format. It supports building complex stock-and-flow diagrams and exporting them as .stmx files for use in Stella Professional.

mcp-server-springaidemo

mcp-server-springaidemo

Uma demonstração do mcp-server do Spring AI.