3 zero-dependency MCP servers in pure Python — CDP scraper, crypto monitor, email sender
Project description
MCP Tools Bundle — 3 Zero-Dependency MCP Servers in Pure Python
Three production-ready MCP (Model Context Protocol) servers for AI agents. Zero pip dependencies. Pure Python standard library. 105 tests passing.
Contents
- Servers
- Requirements
- Why Zero Dependencies?
- Installation
- Running a Server
- Client Integration
- Server Reference
- Architecture
- Testing
- License
Servers
| Server | Tools | Tests | Repo |
|---|---|---|---|
| mcp-cdp-scraper | 12 | 38 | AMEOBIUS-team/mcp-cdp-scraper |
| mcp-crypto-monitor | 10 | 30 | AMEOBIUS-team/mcp-crypto-monitor |
| mcp-email-sender | 8 | 37 | AMEOBIUS-team/mcp-email-sender |
| Total | 30 | 105 |
Requirements
- Python 3.8+ (3.10+ recommended; the servers are tested against 3.12).
- An internet connection for the crypto and scraper servers (they call public APIs / a Chrome instance).
- No pip packages. Every server runs on the standard library alone.
pytestis only needed if you want to run the test suites.
Why Zero Dependencies?
Every MCP server here uses only Python's standard library — no pip installs, no npm, no Playwright, no Selenium, no requests. Just Python and an internet connection.
This means:
- Docker images stay tiny (~50MB vs 250MB+ with Playwright)
- No supply chain risk — no third-party packages to audit
- Fast CI — no dependency resolution, no cache invalidation
- Portable — works in any Python environment without venv setup
Installation
Because there are no dependencies, "installing" is just cloning the source and running it.
Option A — Install script (all 3 servers)
# Clones all three servers into ~/mcp-servers (override with a path argument)
pip install mcp-tools-bundle
# ...or clone this repo first and run it locally:
git clone https://github.com/AMEOBIUS-team/mcp-tools-bundle.git
cd mcp-tools-bundle
./install.sh # installs to ~/mcp-servers
./install.sh /opt/mcp # or a directory of your choice
Option B — Clone individually
git clone https://github.com/AMEOBIUS-team/mcp-tools-bundle/tree/main/mcp_tools_bundle.git
git clone https://github.com/AMEOBIUS-team/mcp-tools-bundle/tree/main/mcp_tools_bundle.git
git clone https://github.com/AMEOBIUS-team/mcp-tools-bundle/tree/main/mcp_tools_bundle.git
Verify the install
cd mcp-cdp-scraper
python -m src.server --manifest # prints the JSON tool manifest
If you see a JSON manifest listing the server's tools, you're ready to go.
Running a Server
Each server is launched the same way from its own directory:
cd <server-dir>
# Print the tool manifest (name, description, JSON schema for each tool) and exit
python -m src.server --manifest
# Run as a long-lived MCP server over STDIO (JSON-RPC on stdin/stdout).
# This is the mode MCP clients such as Claude Desktop and Hermes use.
python -m src.server --stdio
Note: run the command from the server's root directory so that
python -m src.serverresolves thesrcpackage. In client configs this is handled by settingcwd.
Client Integration
Claude Desktop (all 3 servers)
Add to your claude_desktop_config.json:
{
"mcpServers": {
"cdp-scraper": {
"command": "python",
"args": ["-m", "src.server", "--stdio"],
"cwd": "."
},
"crypto-monitor": {
"command": "python",
"args": ["-m", "src.server", "--stdio"],
"cwd": "."
},
"email-sender": {
"command": "python",
"args": ["-m", "src.server", "--stdio"],
"cwd": ".",
"env": {
"SMTP_HOST": "smtp.gmail.com",
"SMTP_PORT": "587",
"SMTP_USERNAME": "your@gmail.com",
"SMTP_PASSWORD": "your-app-password",
"SMTP_TLS": "true"
}
}
}
}
Hermes Agent
mcp:
servers:
cdp-scraper:
command: python
args: ["-m", "src.server", "--stdio"]
cwd: .
crypto-monitor:
command: python
args: ["-m", "src.server", "--stdio"]
cwd: .
email-sender:
command: python
args: ["-m", "src.server", "--stdio"]
cwd: .
Server Reference
mcp-cdp-scraper — Web Scraping via Chrome DevTools Protocol
12 tools: scrape_page, extract_text, extract_links, extract_images, extract_table, fill_form, click_element, screenshot, get_html, wait_for, scroll_to, list_tabs
Connects to any Chrome/Chromium instance via raw WebSocket CDP. React/Vue compatible form filling using native setters + synthetic events. No Playwright, no Selenium.
from src.server import MCPCDPScraperServer
server = MCPCDPScraperServer()
result = server.handle_tool_call("scrape_page", {"url": "https://news.ycombinator.com"})
print(result)
mcp-crypto-monitor — Crypto Wallet & Price Monitoring
10 tools: get_btc_balance, get_eth_balance, get_erc20_balance, get_btc_transactions, get_price, get_price_binance, get_portfolio_value, get_gas_price, get_fear_greed, monitor_address
Uses free public APIs only — Blockchain.info, Etherscan, CoinGecko, Binance, alternative.me. No API keys required.
from src.server import MCPCryptoMonitorServer
server = MCPCryptoMonitorServer()
# Current price of a single asset
price = server.handle_tool_call("get_price", {"symbol": "BTC"})
# Total value of a portfolio
value = server.handle_tool_call("get_portfolio_value", {"holdings": {"BTC": 0.5, "ETH": 10.0}})
print(price, value)
mcp-email-sender — Email Validation & SMTP
8 tools: validate_email, validate_email_batch, check_mx_records, is_disposable, is_role_based, send_email, send_email_batch, test_smtp_connection
Email validation (format, disposable, role-based, MX records) + SMTP sending (TLS/SSL, CC/BCC, batch). Pure stdlib (smtplib, email, re, socket).
from src.server import MCPEmailServer
server = MCPEmailServer()
# Validate an address (format + MX + disposable/role checks)
result = server.handle_tool_call("validate_email", {"email": "user@gmail.com"})
print(result)
SMTP sending is configured via environment variables (SMTP_HOST, SMTP_PORT, SMTP_USERNAME, SMTP_PASSWORD, SMTP_TLS) — see the Claude Desktop config above.
Architecture
Each server follows the same pattern:
MCP Client (Claude / Hermes / any)
│ JSON-RPC over STDIO
▼
MCPServer (src/server.py)
│ Tool dispatch + schema
▼
Engine (src/<engine>.py)
│ Zero-dep business logic
▼
External API / Chrome / SMTP
Testing
Each server ships with its own test suite (pytest is the only extra you need):
pip install pytest
cd mcp-cdp-scraper && python -m pytest tests/ -q # 38 passed
cd mcp-crypto-monitor && python -m pytest tests/ -q # 30 passed
cd mcp-email-sender && python -m pytest tests/ -q # 37 passed
# Total: 105 tests, all passing
Verify the whole bundle at once
scripts/verify_bundle.sh clones all three server repos, confirms each MCP
manifest loads, and runs every test suite — the same integration check that
runs in CI (.github/workflows/integration.yml):
pip install pytest
./scripts/verify_bundle.sh # uses a temp dir, cleaned up afterwards
./scripts/verify_bundle.sh ./servers # or keep the clones in ./servers
If the server repos are private, set GIT_TOKEN to a token with read access
(GIT_TOKEN=ghp_... ./scripts/verify_bundle.sh). In CI this comes from an
optional BUNDLE_TOKEN secret, falling back to the Actions token.
License
MIT — all three servers. See LICENSE.
Author
AMEOBIUS-team — github.com/AMEOBIUS-team
BTC/USDT/ETH/XMR accepted via @darkbot_ai_bot
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_tools_bundle-1.3.0.tar.gz.
File metadata
- Download URL: mcp_tools_bundle-1.3.0.tar.gz
- Upload date:
- Size: 31.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df67a48d748566069b4c03db3a38c4c666aa567fed2212aeb47cdc266ebdc70f
|
|
| MD5 |
43bb61e87fcc0b68c2b507bf09d6276e
|
|
| BLAKE2b-256 |
4e9a71d2aad50ebb5daba087b1b5d2932ba84b7dfcfe86d98bc422d3a34eb995
|
Provenance
The following attestation bundles were made for mcp_tools_bundle-1.3.0.tar.gz:
Publisher:
publish.yml on AMEOBIUS-team/mcp-tools-bundle
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_tools_bundle-1.3.0.tar.gz -
Subject digest:
df67a48d748566069b4c03db3a38c4c666aa567fed2212aeb47cdc266ebdc70f - Sigstore transparency entry: 2147905202
- Sigstore integration time:
-
Permalink:
AMEOBIUS-team/mcp-tools-bundle@7e229e5bef3cef2f23221903b3d294f014325e98 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AMEOBIUS-team
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@7e229e5bef3cef2f23221903b3d294f014325e98 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file mcp_tools_bundle-1.3.0-py3-none-any.whl.
File metadata
- Download URL: mcp_tools_bundle-1.3.0-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6870a46f1a03be558e38a9ad9e09b678332c9ed5e3c525f55df08664bdd2e790
|
|
| MD5 |
e15faef7a97408121d7b10995f979701
|
|
| BLAKE2b-256 |
0086990f689def8d0da1df98ea3f90b0659f873c734f4e91711878a76cdc8bfd
|
Provenance
The following attestation bundles were made for mcp_tools_bundle-1.3.0-py3-none-any.whl:
Publisher:
publish.yml on AMEOBIUS-team/mcp-tools-bundle
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_tools_bundle-1.3.0-py3-none-any.whl -
Subject digest:
6870a46f1a03be558e38a9ad9e09b678332c9ed5e3c525f55df08664bdd2e790 - Sigstore transparency entry: 2147905236
- Sigstore integration time:
-
Permalink:
AMEOBIUS-team/mcp-tools-bundle@7e229e5bef3cef2f23221903b3d294f014325e98 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AMEOBIUS-team
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@7e229e5bef3cef2f23221903b3d294f014325e98 -
Trigger Event:
workflow_dispatch
-
Statement type: