Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Dump

    Dump of all the MCP (model context protocol) servers

    0 stars
    Jupyter Notebook
    Updated Sep 14, 2025

    Table of Contents

    • Table of Contents
    • 1. Overview
    • 2. Repository Structure
    • 3. What is MCP?
    • 4. Project Summaries
    • 5. Quick Start
    • A. Cloudflare Workers MCP server (mcp-hello root)
    • B. Python MCP workspace (mcp-files)
    • C. Postgres AI Agent (ai-agent-postgres-mcp)
    • 6. Development Environment
    • 7. Contributing
    • 8. Disclaimer

    Table of Contents

    • Table of Contents
    • 1. Overview
    • 2. Repository Structure
    • 3. What is MCP?
    • 4. Project Summaries
    • 5. Quick Start
    • A. Cloudflare Workers MCP server (mcp-hello root)
    • B. Python MCP workspace (mcp-files)
    • C. Postgres AI Agent (ai-agent-postgres-mcp)
    • 6. Development Environment
    • 7. Contributing
    • 8. Disclaimer

    Documentation

    MCP-dump

    A collection of Model Context Protocol (MCP) servers, clients, and experiments for learning, prototyping, and comparing implementation styles across runtimes (Cloudflare Workers, Python, etc.).

    Table of Contents

    1. Overview

    2. Repository Structure

    3. What is MCP?

    4. Project Summaries

    5. Quick Start

    6. Development Environment

    7. Contributing

    8. Disclaimer

    ---

    1. Overview

    This monorepo hosts multiple MCP server and client implementations exploring different tooling stacks (Python + uv, TypeScript + Cloudflare Workers) and agent patterns (LLM-backed analysis, reactive agents, tool invocation). It is intended as a playground and reference.

    2. Repository Structure

    code
    MCP-dump/
    ├── ai-agent-postgres-mcp/        # AI agent using MCP to analyze a Postgres database
    │   ├── ai_agent_postgres_mcp.ipynb
    │   ├── main.py
    │   └── README.md
    ├── mcp-hello/                    # Minimal MCP server (Cloudflare Workers / JS)
    │   ├── src/
    │   ├── test/
    │   ├── package.json
    │   └── README.md
    ├── mcp-files/                    # New Python MCP workspace (managed via uv)
    │   ├── pyproject.toml            # Root Python project (workspace style)
    │   ├── uv.lock
    │   ├── examples/                 # Example Python clients & agents
    │   │   └── clients/
    │   │       ├── base.py
    │   │       ├── gemini.py
    │   │       └── react_agent.py
    │   ├── mcp-server/               # Python MCP server implementation
    │   │   ├── pyproject.toml
    │   │   └── src/mcp_server/
    │   │       ├── cli.py
    │   │       ├── config.py
    │   │       ├── helpers.py
    │   │       ├── mcp.py
    │   │       ├── tools.py
    │   │       └── __init__.py
    │   └── mcp-hello/                # (Experimental) parallel minimal example in Python
    │       └── README.md
    └── README.md

    Note: mcp-files/mcp-hello is a Python-flavored minimal example separate from the root mcp-hello Cloudflare Workers implementation. They intentionally explore analogous concepts in different runtimes.

    3. What is MCP?

    Model Context Protocol (MCP) standardizes how tools, agents, and large language models exchange contextual information, resources, and tool invocation results. It aims to:

    • Provide predictable, typed exchanges
    • Reduce ad-hoc prompt engineering glue
    • Support richer, stateful multi-step agent behaviors

    4. Project Summaries

    • ai-agent-postgres-mcp: Demonstrates connecting an AI agent to Postgres via MCP for conversational querying & analysis.
    • mcp-hello (Cloudflare / Workers): Minimal TypeScript MCP server showcasing deployment in edge environments.
    • mcp-files/mcp-server: A Python MCP server with tooling abstractions, CLI entrypoint, and strongly-typed helpers.
    • mcp-files/examples/clients: Example Python clients (including a basic reactive agent pattern and Gemini integration placeholder).
    • mcp-files/mcp-hello: Lightweight Python analogue of the Cloudflare example (experimental).

    5. Quick Start

    A. Cloudflare Workers MCP server (mcp-hello root)

    1. Enter the directory:

    bash
    cd mcp-hello

    2. Install deps (pnpm / npm / yarn):

    bash
    npm install

    3. Run tests:

    bash
    npm test

    4. (Optional) Publish / dev with Wrangler:

    bash
    npx wrangler dev

    B. Python MCP workspace (mcp-files)

    This workspace uses [uv](https://github.com/astral-sh/uv) for fast resolution & execution.

    1. Navigate:

    bash
    cd mcp-files

    2. Run the Python MCP server (CLI):

    bash
    uv run mcp-server

    3. Try a client example (reactive agent):

    bash
    uv run examples/clients/react_agent.py

    4. Explore available tools by invoking help:

    bash
    uv run mcp-server --help

    C. Postgres AI Agent (ai-agent-postgres-mcp)

    Follow its local README.md for database connection setup. Typically you'll:

    bash
    cd ai-agent-postgres-mcp
    uv run main.py  # or python main.py depending on your environment

    6. Development Environment

    LayerTechNotes
    Edge serverCloudflare WorkersUses workers-mcp + Wrangler dev server
    Python serveruv + pyprojectFast lockfile (uv.lock), typed package layout
    ToolingLLM clients (Gemini placeholder)Extend via tools.py in Python server

    Recommended:

    • Install uv for Python: https://docs.astral.sh/uv/
    • Keep commits atomic (feature / chore / docs) using Conventional Commits.
    • Use uv lock --upgrade when updating deps in Python workspace.

    7. Contributing

    Contributions are welcome. Suggested contribution types:

    • New MCP tool modules (mcp-files/mcp-server/src/mcp_server/tools.py)
    • Additional runtime adapters (Rust, Go, etc.)
    • Agent strategy examples (planning, retrieval-augmented, streaming)
    • Documentation improvements & diagrams

    Workflow:

    1. Fork & branch from main.

    2. Implement + add minimal docs/tests.

    3. Run lint/tests (where applicable).

    4. Open PR with clear description and rationale.

    8. Disclaimer

    These implementations are experimental and not guaranteed production-grade. Security, robustness, and performance concerns may be intentionally simplified for clarity.

    ---

    If you find this useful, feel free to open issues with questions or ideas for additional MCP experiment directions.

    Similar MCP

    Based on tags & features

    • CH

      Chuk Mcp Linkedin

      Python00
    • MC

      Mcp Wave

      TypeScript00
    • GL

      Glm Mcp Server

      TypeScript·
      3
    • PU

      Pursuit Mcp

      Python00

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • CH

      Chuk Mcp Linkedin

      Python00
    • MC

      Mcp Wave

      TypeScript00
    • GL

      Glm Mcp Server

      TypeScript·
      3
    • PU

      Pursuit Mcp

      Python00

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k