Skip to main content
Glama

MCP Tools Bundle — 3 Zero-Dependency MCP Servers in Pure Python

Tests PyPI License Python Dependencies MCP

Three production-ready MCP (Model Context Protocol) servers for AI agents. Zero pip dependencies. Pure Python standard library.

Official registry draft: server.json (io.github.AMEOBIUS-space/mcp-tools-bundle). LO submits via mcp-publisher after PyPI includes this README marker.

Servers

Server

Tools

Entry point

mcp-cdp-scraper

12

mcp-cdp-scraper

mcp-crypto-monitor

10

mcp-crypto-monitor

mcp-email-sender

8

mcp-email-sender

Total

30

Related MCP server: @tscafejr/mcp

Requirements

  • Python 3.10+

  • Network for crypto/scraper tools as needed

  • No runtime pip deps beyond the stdlib

Installation

pip install mcp-tools-bundle

From source:

git clone https://github.com/AMEOBIUS-space/mcp-tools-bundle.git
cd mcp-tools-bundle
pip install -e .

Verify:

mcp-cdp-scraper --manifest
mcp-crypto-monitor --manifest
mcp-email-sender --manifest

Running a Server

mcp-cdp-scraper --stdio
mcp-crypto-monitor --stdio
mcp-email-sender --stdio

Client Integration

Claude Desktop / Hermes

{
  "mcpServers": {
    "cdp-scraper": {
      "command": "mcp-cdp-scraper",
      "args": ["--stdio"]
    },
    "crypto-monitor": {
      "command": "mcp-crypto-monitor",
      "args": ["--stdio"]
    },
    "email-sender": {
      "command": "mcp-email-sender",
      "args": ["--stdio"],
      "env": {
        "SMTP_HOST": "smtp.gmail.com",
        "SMTP_PORT": "587",
        "SMTP_USERNAME": "your@gmail.com",
        "SMTP_PASSWORD": "your-app-password",
        "SMTP_TLS": "true"
      }
    }
  }
}

Server Reference

mcp-cdp-scraper

Chrome DevTools Protocol scrape/fill/screenshot tools. Zero Playwright/Selenium.

mcp-crypto-monitor

Public APIs for balances/prices (Blockchain.info, Etherscan, CoinGecko, Binance, alternative.me).

mcp-email-sender

Validate emails + SMTP send. Configure via SMTP_* env vars.

Architecture

MCP Client → STDIO JSON-RPC → MCPServer → engine modules → Chrome / public APIs / SMTP

Testing

pip install pytest
python -m pytest tests/ -q

Registry submit (LO only)

  1. Merge this PR and publish a PyPI version that includes the mcp-name HTML comment above.

  2. mcp-publisher login github (namespace io.github.AMEOBIUS-space)

  3. mcp-publisher publish from repo root using server.json

License

MIT — see LICENSE.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that provides tools for interacting with Chrome through its DevTools Protocol, enabling remote control of Chrome tabs to execute JavaScript, capture screenshots, monitor network traffic, and more.
    26 npm
    53
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Remote MCP server for web scraping with anti-bot evasion. Provides stealth HTTP fetching, headless browser with Cloudflare bypass, CSS selectors, YouTube transcripts, and Markdown conversion.
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for controlling Chromium/Chrome via Chrome DevTools Protocol. Supports cross-platform automation, auto-launch, and automatic reconnection.
    25
    1
    MIT