Discover Awesome MCP Servers

Extend your agent with 57,079 capabilities via MCP servers.

All57,079
Malaysian Weather MCP Server

Malaysian Weather MCP Server

Provides real-time weather forecasts for locations across Malaysia by fetching data directly from MET Malaysia's API. It enables AI assistants to query today's conditions and seven-day forecasts for states, districts, and towns.

Mistral OCR MCP Server

Mistral OCR MCP Server

Extracts text and images from PDFs and image files using the Mistral OCR API, with a security sandbox for file writes.

Screen Vision MCP Server

Screen Vision MCP Server

Enables screen capture, OCR text extraction, and automated clicking on macOS through MCP. Supports fullscreen, window, and region capture with optional text recognition and monitoring.

Stripe MCP

Stripe MCP

Enables integration with Stripe APIs through function calling, supporting operations on customers, products, invoices, subscriptions, and more.

MemoryThreads

MemoryThreads

Persistent, searchable conversation memory shared across Claude Code and Codex, enabling cross-session recall and thread continuity via hybrid BM25 and vector search.

Security Scan MCP Server

Security Scan MCP Server

An MCP server that provides CVE-driven security prompts for code review, enabling coding agents to get actionable security checks based on real vulnerabilities.

MySQL MCP Server

MySQL MCP Server

This server connects to MySQL databases, enabling listing databases and tables, describing table schemas, and executing read-only SQL queries with optional write support and SSL security.

Resonant Mind

Resonant Mind

MCP server providing persistent cognitive infrastructure including semantic memory, emotional processing, identity continuity, and a subconscious daemon for pattern analysis.

iCloud CalDAV MCP Connector

iCloud CalDAV MCP Connector

An HTTP Model Context Protocol (MCP) server exposing iCloud Calendar (CalDAV) tools so MCP-aware clients can list calendars, read events, and create/update/delete events using an iCloud app-specific password.

@lpm-registry/mcp-server

@lpm-registry/mcp-server

MCP server for the LPM package registry, enabling AI tools to search, browse source code, install packages, check quality, and more.

PubMed Custom Connector MCP Server

PubMed Custom Connector MCP Server

Enables users to search and fetch PubMed biomedical literature articles through natural language queries in Microsoft 365 Copilot.

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

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

Servidor MCP micro unificado

Shift MCP Server

Shift MCP Server

A lightweight coordination layer for multiple AI agents working on the same codebase, providing check-in and check-out tools via STDIO or Streamable HTTP.

caseware-ai-procurement-knowledge-platform

caseware-ai-procurement-knowledge-platform

Enables AI assistants to retrieve, search, and compare procurement documents using hybrid retrieval and MCP integration.

google-analytics-mcp

google-analytics-mcp

A powerful Model Context Protocol (MCP) server that provides comprehensive Google Analytics 4 (GA4), Google Search Console (GSC), and Google Merchant Center (GMC) integration for Claude Desktop and other MCP clients.

SIMPA

SIMPA

SIMPA is a Model Context Protocol (MCP) service that learns from every interaction to continuously improve prompt quality. It remembers what worked, refines what didn't, and automatically selects the best prompts for any situation.

macOS App Launcher

macOS App Launcher

A fast MCP server for opening, focusing, and quitting macOS apps, and opening URLs in the browser, usable by voice or from any MCP client.

apifable

apifable

MCP server that helps AI agents explore OpenAPI specs, search endpoints, and generate TypeScript types.

MCP Server Tutorial

MCP Server Tutorial

TogoMCP

TogoMCP

An MCP server that gives AI assistants access to biological and biomedical RDF databases via SPARQL at the RDF Portal, as well as selected REST APIs (NCBI E-utilities, UniProt, ChEMBL, PDB, Reactome, Rhea, MeSH, and more).

Model Context Protocol (MCP) Server Project

Model Context Protocol (MCP) Server Project

mcp_docs_server

mcp_docs_server

Okay, I can help you with that! To give you the best advice on building an MCP (Minecraft Coder Pack) server, I need a little more information. MCP is primarily used for decompiling, deobfuscating, and modifying the Minecraft source code, not for running a server directly. Are you trying to do one of the following? 1. **Develop a Minecraft Mod:** You want to use MCP to understand and modify the Minecraft code to create a mod. 2. **Run a Standard Minecraft Server:** You want to set up a server to play Minecraft with friends or publicly. 3. **Something Else:** You have a different goal in mind related to MCP and servers. Please tell me which of these (or something else) you're trying to do. In the meantime, here's some general information that might be helpful, depending on your goal: **If you want to develop a Minecraft Mod (using MCP):** * **MCP (Minecraft Coder Pack):** MCP is a toolset that allows you to decompile, deobfuscate, and recompile the Minecraft source code. This makes it readable and modifiable. It's essential for understanding how Minecraft works internally. * **Forge or Fabric:** These are modding APIs (Application Programming Interfaces) that provide a framework for creating mods. They handle a lot of the low-level details and provide hooks into the Minecraft code. Forge is the older and more established API, while Fabric is newer and generally considered more lightweight. **You'll almost certainly want to use one of these.** * **IDE (Integrated Development Environment):** You'll need an IDE like IntelliJ IDEA or Eclipse to write your code. These IDEs have plugins that make mod development easier. * **Java Development Kit (JDK):** You need the correct version of the JDK to compile your mod. The version depends on the Minecraft version you're targeting. * **Gradle or Maven:** These are build automation tools that help you manage dependencies and build your mod. Forge and Fabric projects typically use Gradle. **General Steps for Mod Development (using MCP as a foundation):** 1. **Set up your development environment:** Install the JDK, IDE, and a build tool (Gradle). 2. **Download and set up Forge or Fabric:** Follow the instructions on the Forge or Fabric websites to set up a development environment. This usually involves downloading a starter project. 3. **Decompile Minecraft (if needed):** While Forge and Fabric provide pre-deobfuscated code, you might still need to decompile specific parts of Minecraft using MCP if you need to understand the original code very deeply. This is less common now. 4. **Write your mod code:** Use your IDE to write the Java code for your mod. Use the Forge or Fabric API to interact with the Minecraft world. 5. **Build your mod:** Use Gradle to build your mod into a `.jar` file. 6. **Test your mod:** Place the `.jar` file in the `mods` folder of your Minecraft installation. Run Minecraft with Forge or Fabric to test your mod. **If you want to run a Standard Minecraft Server:** * **Download the Minecraft Server Software:** Go to the official Minecraft website and download the server `.jar` file for the version of Minecraft you want to run. * **Create a Server Directory:** Create a new folder on your computer to hold the server files. * **Place the `.jar` file in the directory:** Move the downloaded `.jar` file into the server directory. * **Run the Server:** Open a command prompt or terminal, navigate to the server directory, and run the server using the command: `java -Xmx1024M -Xms1024M -jar server.jar nogui` (Adjust the `-Xmx` and `-Xms` values to allocate more or less memory to the server). * **Accept the EULA:** The first time you run the server, it will generate an `eula.txt` file. Open this file and change `eula=false` to `eula=true` to accept the Minecraft End User License Agreement. * **Configure the Server (server.properties):** The server will also generate a `server.properties` file. This file contains settings for the server, such as the game mode, difficulty, port, and maximum number of players. Edit this file to customize your server. * **Port Forwarding (if needed):** If you want people outside your local network to be able to connect to your server, you'll need to configure port forwarding on your router. The default Minecraft server port is 25565. * **Run the Server Again:** After configuring the server, run the server again using the same command as before. **Important Considerations:** * **Minecraft Version:** Make sure you're using the correct versions of MCP, Forge/Fabric, and the Minecraft server software. They all need to be compatible. * **Memory:** Allocate enough memory to the server. The `-Xmx` and `-Xms` parameters in the `java` command control the maximum and initial memory allocation, respectively. 1GB (1024M) is a good starting point, but you may need more if you have a lot of players or mods. * **Security:** Keep your server software up to date to protect against security vulnerabilities. Use a strong password for your server's RCON (Remote Console) if you enable it. * **Resources:** The Minecraft Forge and Fabric websites have excellent documentation and tutorials. There are also many helpful communities online. **Please tell me more about what you're trying to do so I can give you more specific instructions!**

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

React application for MCP server test

multimodal-mcp

multimodal-mcp

Gives any MCP client (OpenCode, Claude Code, Claude Desktop, Cursor, etc.) the ability to process images by automatically converting them to text descriptions using a vision model, so that text-only LLMs can handle image-based queries.

rust-mcp-tutorial

rust-mcp-tutorial

Por supuesto, aquí tienes la traducción: "Probando un servidor MCP con Rust"

FrameLayoutKit MCP Server

FrameLayoutKit MCP Server

Provides AI-powered assistance for iOS developers using FrameLayoutKit, enabling code generation, Auto Layout conversion to FrameLayoutKit syntax, layout validation, and migration guidance for Swift UIKit projects.

Network MCP Lab

Network MCP Lab

MCP server for executing show commands and managing Cisco IOS-XE network devices via async SSH using Scrapli.

Tracking MCP

Tracking MCP

A generic MCP server for tracking any entity type (e.g., weight, workouts, books) without predefined schemas, using SQLite with JSON columns for flexible data storage and querying.

Facebook Insights Metrics v23

Facebook Insights Metrics v23

Provides access to 120+ Facebook Graph API v23.0 Insights metrics through MCP tools and resources. Features intelligent fuzzy search capabilities and real-time metric discovery for comprehensive Facebook analytics data.