Model Context Protocol Registry

Connect LLMs to the Real World

Explore production-ready MCP servers, generate configuration files, and access the best learning resources to build intelligent agent workflows.

Explore Servers

GitHub

apis

Allows AI agents to search, view, create, and manage GitHub repositories, issues, pulls, and commits.

npx -y @modelcontextprotocol/server-github

PostgreSQL

databases

Enables agents to inspect schemas, execute read-only queries, and analyze PostgreSQL database tables safely.

npx -y @modelcontextprotocol/server-postgres

Kite Connect

apis

MCP server integration for Zerodha Kite Connect APIs, allowing agents to fetch holdings, margins, positions, and live quotes.

npx -y mcp-remote https://mcp.kite.trade/mcp

Brave Search

search

Integrate Brave Search to allow agents to search the web, fetch search results, and crawl web pages.

npx -y @modelcontextprotocol/server-brave-search

Fetch Web Reader

search

Exposes tools to download and convert remote HTML pages into clean, agent-readable markdown.

npx -y @modelcontextprotocol/server-fetch

Slack Integration

apis

Allows agents to list channels, read conversations, read threads, and post messages to Slack workspaces.

npx -y @modelcontextprotocol/server-slack

Local Filesystem

utilities

Enables secure and sandboxed local directory read, write, search, and file information operations.

npx -y @modelcontextprotocol/server-filesystem

Memory Graph

utilities

Persistent semantic knowledge graph storage using simple files to give agents long-term episodic memory.

npx -y @modelcontextprotocol/server-memory

inference.sh

utilities

Run 150+ AI apps โ€” image, video, audio, LLMs, 3D and more. Browse, execute, stream results.

npx -y ac.inference.sh/mcp

docs-mcp

utilities

Remote MCP server for Tandem docs, install guides, SDKs, workflows, and agent setup help.

npx -y ac.tandem/docs-mcp

trading

utilities

AI-powered trading strategy development: backtesting, market data, and portfolio analysis

npx -y agency.lona/trading

aTars MCP

utilities

Crypto market signals, technical indicators, and sentiment analysis for AI agents.

npx -y ai.aarna/atars-mcp
Config Builder

Interactive mcp_config.json Builder

Select the tools you want to use, customize their configuration arguments, and copy the unified configuration file directly into your agent setup.

1. Select & Configure Servers

2. Live config file

// Configuration will generate here...

๐Ÿ’ก How to Use:

Save this code as mcp_config.json in your local app configuration directory (e.g., ~/Library/Application Support/Antigravity/mcp_config.json or your Claude Desktop config folder).

Developer Guide

Build Your Own MCP Server

Writing custom MCP servers is simple. Create integrations in Node.js or Python to give your AI workspace access to proprietary systems and APIs.

1
Install the SDK: Start by installing the model-context-protocol client/server library.
2
Define Tools: Register tool functions, descriptions, and parameter schemas.
3
Expose Endpoints: Read/write inputs over stdio or HTTP endpoints.
server.js (Node.js SDK)
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";

// Initialize server
const server = new Server({
  name: "custom-mcp-server",
  version: "1.0.0"
}, {
  capabilities: { tools: {} }
});

// Define a tool
server.setRequestHandler(ListToolsRequestSchema, async () => ({
  tools: [{
    name: "calculate_metric",
    description: "Computes custom business analytics",
    inputSchema: {
      type: "object",
      properties: {
        id: { type: "string" }
      },
      required: ["id"]
    }
  }]
}));

// Connect standard input/output transport
const transport = new StdioServerTransport();
await server.connect(transport);
Cost:
Topic:
Level:
Sort By:

Official Model Context Protocol Specification

documentation beginner LLM Fundamentals
Official

The official protocol documentation, schemas, and API specification for building MCP clients and servers.

Microsoft Developer: MCP for Beginners (Lessons 1-11)

course beginner LLM Fundamentals
Featured

Comprehensive structured curriculum covering core architectures, prompts, resources, tools, and cross-language setups (Python, TS, Java, .NET).

KodeKloud: MCP Explained for Beginners

video beginner LLM Fundamentals
Popular

Deep-dive video course covering client-server architecture, JSON-RPC, tools discovery, and practical flight booking demos.

Matt Pocock: Get Started With MCP // 2-Min Guide

video intermediate Custom MCP Dev
Quick

A rapid developer-oriented walkthrough of configuring standard MCP servers and clients using TypeScript.

Fahd Mirza: Step-by-Step MCP Server Setup

video intermediate Custom MCP Dev
New

Approach-friendly tutorial that covers how to build a basic server and hook it up to local database tables.

Amit Thinks: Web Scraping and MCP Integration

video beginner Custom MCP Dev
Practical

Covers how to integrate web search engines and crawlers into your custom MCP servers to feed LLMs.

Mastering MCP: Build AI Agent Tool Integrations

course intermediate Custom MCP Dev
Bestseller

Step-by-step video tutorials for using Node.js and Python SDKs to create tool bindings and servers for LLMs.

Advanced Agent Orchestration Masterclass

course advanced Agent Orchestration
Premium

Cohort-based advanced training on designing secure custom filesystem and database adapters for AI agent teams.

Building Custom SDK Adapters from Scratch

tutorial intermediate Custom MCP Dev
New

A comprehensive blog post on integrating third-party REST APIs into standard Model Context Protocol structures.

Microsoft: MCP for Beginners

course beginner LLM Fundamentals
Featured

Microsoft's official open-source curriculum for MCP, providing cross-language examples in .NET (C#), Java, TypeScript, Rust, and Python.

ShawhinT: Model Context Protocol (MCP) Explained in 20 Minutes

video beginner LLM Fundamentals
Popular

Learn what MCP is, why it is crucial for AI tool-use, and walk through building a Python-based server step-by-step.

Paste your mcp_config.json

Validation Report

๐Ÿ’ก
Waiting for input... Paste your configuration JSON in the editor on the left to begin audit.
Configuration copied to clipboard!