mcp-tools-bundle 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mcp_tools_bundle-1.1.0/LICENSE +21 -0
- mcp_tools_bundle-1.1.0/PKG-INFO +193 -0
- mcp_tools_bundle-1.1.0/README.md +172 -0
- mcp_tools_bundle-1.1.0/mcp_tools_bundle.egg-info/PKG-INFO +193 -0
- mcp_tools_bundle-1.1.0/mcp_tools_bundle.egg-info/SOURCES.txt +7 -0
- mcp_tools_bundle-1.1.0/mcp_tools_bundle.egg-info/dependency_links.txt +1 -0
- mcp_tools_bundle-1.1.0/mcp_tools_bundle.egg-info/top_level.txt +1 -0
- mcp_tools_bundle-1.1.0/pyproject.toml +26 -0
- mcp_tools_bundle-1.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AMEOBIUS
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mcp-tools-bundle
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: 3 zero-dependency MCP servers in pure Python
|
|
5
|
+
Author: aaameobius-crypto
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/aaameobius-crypto/mcp-tools-bundle
|
|
8
|
+
Keywords: mcp,ai,agent,tools
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
+
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
# MCP Tools Bundle — 3 Zero-Dependency MCP Servers in Pure Python
|
|
23
|
+
|
|
24
|
+
[](https://github.com/aaameobius-crypto/mcp-tools-bundle)
|
|
25
|
+
[](LICENSE)
|
|
26
|
+
[](https://python.org)
|
|
27
|
+
[](https://github.com/aaameobius-crypto/mcp-tools-bundle)
|
|
28
|
+
[](https://modelcontextprotocol.io)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
> Three production-ready MCP (Model Context Protocol) servers for AI agents. Zero pip dependencies. Pure Python stdlib. 105 tests passing.
|
|
32
|
+
|
|
33
|
+
## Servers
|
|
34
|
+
|
|
35
|
+
| Server | Tools | Tests | Repo |
|
|
36
|
+
|--------|-------|-------|------|
|
|
37
|
+
| **mcp-cdp-scraper** | 12 | 38 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
38
|
+
| **mcp-crypto-monitor** | 10 | 30 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
39
|
+
| **mcp-email-sender** | 8 | 37 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
40
|
+
| **Total** | **30** | **105** | |
|
|
41
|
+
|
|
42
|
+
## Why Zero Dependencies?
|
|
43
|
+
|
|
44
|
+
Every MCP server here uses **only Python's standard library** — no pip installs, no npm, no Playwright, no Selenium, no requests. Just Python 3.10+ and an internet connection.
|
|
45
|
+
|
|
46
|
+
This means:
|
|
47
|
+
- **Docker images stay tiny** (~50MB vs 250MB+ with Playwright)
|
|
48
|
+
- **No supply chain risk** — no third-party packages to audit
|
|
49
|
+
- **Fast CI** — no dependency resolution, no cache invalidation
|
|
50
|
+
- **Portable** — works in any Python environment without venv setup
|
|
51
|
+
|
|
52
|
+
## Quick Install
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Clone all three
|
|
56
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
57
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
58
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
59
|
+
|
|
60
|
+
# No pip install needed — zero dependencies!
|
|
61
|
+
# Just run directly:
|
|
62
|
+
python mcp-cdp-scraper/src/server.py --manifest
|
|
63
|
+
python mcp-crypto-monitor/src/server.py --manifest
|
|
64
|
+
python mcp-email-sender/src/server.py --manifest
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Claude Desktop Config (all 3 servers)
|
|
68
|
+
|
|
69
|
+
```json
|
|
70
|
+
{
|
|
71
|
+
"mcpServers": {
|
|
72
|
+
"cdp-scraper": {
|
|
73
|
+
"command": "python",
|
|
74
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
75
|
+
"cwd": "/path/to/mcp-cdp-scraper"
|
|
76
|
+
},
|
|
77
|
+
"crypto-monitor": {
|
|
78
|
+
"command": "python",
|
|
79
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
80
|
+
"cwd": "/path/to/mcp-crypto-monitor"
|
|
81
|
+
},
|
|
82
|
+
"email-sender": {
|
|
83
|
+
"command": "python",
|
|
84
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
85
|
+
"cwd": "/path/to/mcp-email-sender",
|
|
86
|
+
"env": {
|
|
87
|
+
"SMTP_HOST": "smtp.gmail.com",
|
|
88
|
+
"SMTP_PORT": "587",
|
|
89
|
+
"SMTP_USERNAME": "your@gmail.com",
|
|
90
|
+
"SMTP_PASSWORD": "your-app-password",
|
|
91
|
+
"SMTP_TLS": "true"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Hermes Agent Config
|
|
99
|
+
|
|
100
|
+
```yaml
|
|
101
|
+
mcp:
|
|
102
|
+
servers:
|
|
103
|
+
cdp-scraper:
|
|
104
|
+
command: python
|
|
105
|
+
args: ["-m", "src.server", "--stdio"]
|
|
106
|
+
cwd: /path/to/mcp-cdp-scraper
|
|
107
|
+
|
|
108
|
+
crypto-monitor:
|
|
109
|
+
command: python
|
|
110
|
+
args: ["-m", "src.server", "--stdio"]
|
|
111
|
+
cwd: /path/to/mcp-crypto-monitor
|
|
112
|
+
|
|
113
|
+
email-sender:
|
|
114
|
+
command: python
|
|
115
|
+
args: ["-m", "src.server", "--stdio"]
|
|
116
|
+
cwd: /path/to/mcp-email-sender
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## mcp-cdp-scraper — Web Scraping via Chrome DevTools Protocol
|
|
120
|
+
|
|
121
|
+
**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`
|
|
122
|
+
|
|
123
|
+
Connects to any Chrome/Chromium instance via raw WebSocket CDP. React/Vue compatible form filling using native setters + synthetic events. No Playwright, no Selenium.
|
|
124
|
+
|
|
125
|
+
```python
|
|
126
|
+
from src.server import MCPCDPScraperServer
|
|
127
|
+
|
|
128
|
+
server = MCPCDPScraperServer()
|
|
129
|
+
result = server.handle_tool_call("scrape_page", {"url": "https://news.ycombinator.com"})
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## mcp-crypto-monitor — Crypto Wallet & Price Monitoring
|
|
133
|
+
|
|
134
|
+
**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`
|
|
135
|
+
|
|
136
|
+
Uses free public APIs only — Blockchain.info, Etherscan, CoinGecko, Binance, alternative.me. No API keys required.
|
|
137
|
+
|
|
138
|
+
```python
|
|
139
|
+
from src.server import MCPCryptoMonitorServer
|
|
140
|
+
|
|
141
|
+
server = MCPCryptoMonitorServer()
|
|
142
|
+
result = server.handle_tool_call("get_portfolio_value", {"holdings": {"BTC": 0.5, "ETH": 10.0}})
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## mcp-email-sender — Email Validation & SMTP
|
|
146
|
+
|
|
147
|
+
**8 tools**: `validate_email`, `validate_email_batch`, `check_mx_records`, `is_disposable`, `is_role_based`, `send_email`, `send_email_batch`, `test_smtp_connection`
|
|
148
|
+
|
|
149
|
+
Email validation (format, disposable, role-based, MX records) + SMTP sending (TLS/SSL, CC/BCC, batch). Pure stdlib (smtplib, email, re, socket).
|
|
150
|
+
|
|
151
|
+
```python
|
|
152
|
+
from src.server import MCPEmailServer
|
|
153
|
+
|
|
154
|
+
server = MCPEmailServer()
|
|
155
|
+
result = server.handle_tool_call("validate_email", {"email": "user@gmail.com"})
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
## Architecture
|
|
159
|
+
|
|
160
|
+
Each server follows the same pattern:
|
|
161
|
+
|
|
162
|
+
```
|
|
163
|
+
MCP Client (Claude / Hermes / any)
|
|
164
|
+
│ JSON-RPC over STDIO
|
|
165
|
+
▼
|
|
166
|
+
MCPServer (src/server.py)
|
|
167
|
+
│ Tool dispatch + schema
|
|
168
|
+
▼
|
|
169
|
+
Engine (src/<engine>.py)
|
|
170
|
+
│ Zero-dep business logic
|
|
171
|
+
▼
|
|
172
|
+
External API / Chrome / SMTP
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
## Testing
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
# Run all tests
|
|
179
|
+
cd mcp-cdp-scraper && python -m pytest tests/ -q # 38 passed
|
|
180
|
+
cd mcp-crypto-monitor && python -m pytest tests/ -q # 30 passed
|
|
181
|
+
cd mcp-email-sender && python -m pytest tests/ -q # 37 passed
|
|
182
|
+
# Total: 105 tests, all passing
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
## License
|
|
186
|
+
|
|
187
|
+
MIT — all three servers
|
|
188
|
+
|
|
189
|
+
## Author
|
|
190
|
+
|
|
191
|
+
aaameobius-crypto — [github.com/aaameobius-crypto](https://github.com/aaameobius-crypto)
|
|
192
|
+
|
|
193
|
+
BTC/USDT/ETH/XMR accepted via [@darkbot_ai_bot](https://t.me/darkbot_ai_bot)
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# MCP Tools Bundle — 3 Zero-Dependency MCP Servers in Pure Python
|
|
2
|
+
|
|
3
|
+
[](https://github.com/aaameobius-crypto/mcp-tools-bundle)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](https://python.org)
|
|
6
|
+
[](https://github.com/aaameobius-crypto/mcp-tools-bundle)
|
|
7
|
+
[](https://modelcontextprotocol.io)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
> Three production-ready MCP (Model Context Protocol) servers for AI agents. Zero pip dependencies. Pure Python stdlib. 105 tests passing.
|
|
11
|
+
|
|
12
|
+
## Servers
|
|
13
|
+
|
|
14
|
+
| Server | Tools | Tests | Repo |
|
|
15
|
+
|--------|-------|-------|------|
|
|
16
|
+
| **mcp-cdp-scraper** | 12 | 38 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
17
|
+
| **mcp-crypto-monitor** | 10 | 30 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
18
|
+
| **mcp-email-sender** | 8 | 37 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
19
|
+
| **Total** | **30** | **105** | |
|
|
20
|
+
|
|
21
|
+
## Why Zero Dependencies?
|
|
22
|
+
|
|
23
|
+
Every MCP server here uses **only Python's standard library** — no pip installs, no npm, no Playwright, no Selenium, no requests. Just Python 3.10+ and an internet connection.
|
|
24
|
+
|
|
25
|
+
This means:
|
|
26
|
+
- **Docker images stay tiny** (~50MB vs 250MB+ with Playwright)
|
|
27
|
+
- **No supply chain risk** — no third-party packages to audit
|
|
28
|
+
- **Fast CI** — no dependency resolution, no cache invalidation
|
|
29
|
+
- **Portable** — works in any Python environment without venv setup
|
|
30
|
+
|
|
31
|
+
## Quick Install
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# Clone all three
|
|
35
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
36
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
37
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
38
|
+
|
|
39
|
+
# No pip install needed — zero dependencies!
|
|
40
|
+
# Just run directly:
|
|
41
|
+
python mcp-cdp-scraper/src/server.py --manifest
|
|
42
|
+
python mcp-crypto-monitor/src/server.py --manifest
|
|
43
|
+
python mcp-email-sender/src/server.py --manifest
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Claude Desktop Config (all 3 servers)
|
|
47
|
+
|
|
48
|
+
```json
|
|
49
|
+
{
|
|
50
|
+
"mcpServers": {
|
|
51
|
+
"cdp-scraper": {
|
|
52
|
+
"command": "python",
|
|
53
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
54
|
+
"cwd": "/path/to/mcp-cdp-scraper"
|
|
55
|
+
},
|
|
56
|
+
"crypto-monitor": {
|
|
57
|
+
"command": "python",
|
|
58
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
59
|
+
"cwd": "/path/to/mcp-crypto-monitor"
|
|
60
|
+
},
|
|
61
|
+
"email-sender": {
|
|
62
|
+
"command": "python",
|
|
63
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
64
|
+
"cwd": "/path/to/mcp-email-sender",
|
|
65
|
+
"env": {
|
|
66
|
+
"SMTP_HOST": "smtp.gmail.com",
|
|
67
|
+
"SMTP_PORT": "587",
|
|
68
|
+
"SMTP_USERNAME": "your@gmail.com",
|
|
69
|
+
"SMTP_PASSWORD": "your-app-password",
|
|
70
|
+
"SMTP_TLS": "true"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Hermes Agent Config
|
|
78
|
+
|
|
79
|
+
```yaml
|
|
80
|
+
mcp:
|
|
81
|
+
servers:
|
|
82
|
+
cdp-scraper:
|
|
83
|
+
command: python
|
|
84
|
+
args: ["-m", "src.server", "--stdio"]
|
|
85
|
+
cwd: /path/to/mcp-cdp-scraper
|
|
86
|
+
|
|
87
|
+
crypto-monitor:
|
|
88
|
+
command: python
|
|
89
|
+
args: ["-m", "src.server", "--stdio"]
|
|
90
|
+
cwd: /path/to/mcp-crypto-monitor
|
|
91
|
+
|
|
92
|
+
email-sender:
|
|
93
|
+
command: python
|
|
94
|
+
args: ["-m", "src.server", "--stdio"]
|
|
95
|
+
cwd: /path/to/mcp-email-sender
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## mcp-cdp-scraper — Web Scraping via Chrome DevTools Protocol
|
|
99
|
+
|
|
100
|
+
**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`
|
|
101
|
+
|
|
102
|
+
Connects to any Chrome/Chromium instance via raw WebSocket CDP. React/Vue compatible form filling using native setters + synthetic events. No Playwright, no Selenium.
|
|
103
|
+
|
|
104
|
+
```python
|
|
105
|
+
from src.server import MCPCDPScraperServer
|
|
106
|
+
|
|
107
|
+
server = MCPCDPScraperServer()
|
|
108
|
+
result = server.handle_tool_call("scrape_page", {"url": "https://news.ycombinator.com"})
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
## mcp-crypto-monitor — Crypto Wallet & Price Monitoring
|
|
112
|
+
|
|
113
|
+
**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`
|
|
114
|
+
|
|
115
|
+
Uses free public APIs only — Blockchain.info, Etherscan, CoinGecko, Binance, alternative.me. No API keys required.
|
|
116
|
+
|
|
117
|
+
```python
|
|
118
|
+
from src.server import MCPCryptoMonitorServer
|
|
119
|
+
|
|
120
|
+
server = MCPCryptoMonitorServer()
|
|
121
|
+
result = server.handle_tool_call("get_portfolio_value", {"holdings": {"BTC": 0.5, "ETH": 10.0}})
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
## mcp-email-sender — Email Validation & SMTP
|
|
125
|
+
|
|
126
|
+
**8 tools**: `validate_email`, `validate_email_batch`, `check_mx_records`, `is_disposable`, `is_role_based`, `send_email`, `send_email_batch`, `test_smtp_connection`
|
|
127
|
+
|
|
128
|
+
Email validation (format, disposable, role-based, MX records) + SMTP sending (TLS/SSL, CC/BCC, batch). Pure stdlib (smtplib, email, re, socket).
|
|
129
|
+
|
|
130
|
+
```python
|
|
131
|
+
from src.server import MCPEmailServer
|
|
132
|
+
|
|
133
|
+
server = MCPEmailServer()
|
|
134
|
+
result = server.handle_tool_call("validate_email", {"email": "user@gmail.com"})
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
## Architecture
|
|
138
|
+
|
|
139
|
+
Each server follows the same pattern:
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
MCP Client (Claude / Hermes / any)
|
|
143
|
+
│ JSON-RPC over STDIO
|
|
144
|
+
▼
|
|
145
|
+
MCPServer (src/server.py)
|
|
146
|
+
│ Tool dispatch + schema
|
|
147
|
+
▼
|
|
148
|
+
Engine (src/<engine>.py)
|
|
149
|
+
│ Zero-dep business logic
|
|
150
|
+
▼
|
|
151
|
+
External API / Chrome / SMTP
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
## Testing
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
# Run all tests
|
|
158
|
+
cd mcp-cdp-scraper && python -m pytest tests/ -q # 38 passed
|
|
159
|
+
cd mcp-crypto-monitor && python -m pytest tests/ -q # 30 passed
|
|
160
|
+
cd mcp-email-sender && python -m pytest tests/ -q # 37 passed
|
|
161
|
+
# Total: 105 tests, all passing
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
## License
|
|
165
|
+
|
|
166
|
+
MIT — all three servers
|
|
167
|
+
|
|
168
|
+
## Author
|
|
169
|
+
|
|
170
|
+
aaameobius-crypto — [github.com/aaameobius-crypto](https://github.com/aaameobius-crypto)
|
|
171
|
+
|
|
172
|
+
BTC/USDT/ETH/XMR accepted via [@darkbot_ai_bot](https://t.me/darkbot_ai_bot)
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mcp-tools-bundle
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: 3 zero-dependency MCP servers in pure Python
|
|
5
|
+
Author: aaameobius-crypto
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/aaameobius-crypto/mcp-tools-bundle
|
|
8
|
+
Keywords: mcp,ai,agent,tools
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
+
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
# MCP Tools Bundle — 3 Zero-Dependency MCP Servers in Pure Python
|
|
23
|
+
|
|
24
|
+
[](https://github.com/aaameobius-crypto/mcp-tools-bundle)
|
|
25
|
+
[](LICENSE)
|
|
26
|
+
[](https://python.org)
|
|
27
|
+
[](https://github.com/aaameobius-crypto/mcp-tools-bundle)
|
|
28
|
+
[](https://modelcontextprotocol.io)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
> Three production-ready MCP (Model Context Protocol) servers for AI agents. Zero pip dependencies. Pure Python stdlib. 105 tests passing.
|
|
32
|
+
|
|
33
|
+
## Servers
|
|
34
|
+
|
|
35
|
+
| Server | Tools | Tests | Repo |
|
|
36
|
+
|--------|-------|-------|------|
|
|
37
|
+
| **mcp-cdp-scraper** | 12 | 38 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
38
|
+
| **mcp-crypto-monitor** | 10 | 30 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
39
|
+
| **mcp-email-sender** | 8 | 37 | [github.com/aaameobius-crypto/mcp-tools-bundle](https://github.com/aaameobius-crypto/mcp-tools-bundle) |
|
|
40
|
+
| **Total** | **30** | **105** | |
|
|
41
|
+
|
|
42
|
+
## Why Zero Dependencies?
|
|
43
|
+
|
|
44
|
+
Every MCP server here uses **only Python's standard library** — no pip installs, no npm, no Playwright, no Selenium, no requests. Just Python 3.10+ and an internet connection.
|
|
45
|
+
|
|
46
|
+
This means:
|
|
47
|
+
- **Docker images stay tiny** (~50MB vs 250MB+ with Playwright)
|
|
48
|
+
- **No supply chain risk** — no third-party packages to audit
|
|
49
|
+
- **Fast CI** — no dependency resolution, no cache invalidation
|
|
50
|
+
- **Portable** — works in any Python environment without venv setup
|
|
51
|
+
|
|
52
|
+
## Quick Install
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Clone all three
|
|
56
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
57
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
58
|
+
git clone https://github.com/aaameobius-crypto/mcp-tools-bundle.git
|
|
59
|
+
|
|
60
|
+
# No pip install needed — zero dependencies!
|
|
61
|
+
# Just run directly:
|
|
62
|
+
python mcp-cdp-scraper/src/server.py --manifest
|
|
63
|
+
python mcp-crypto-monitor/src/server.py --manifest
|
|
64
|
+
python mcp-email-sender/src/server.py --manifest
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Claude Desktop Config (all 3 servers)
|
|
68
|
+
|
|
69
|
+
```json
|
|
70
|
+
{
|
|
71
|
+
"mcpServers": {
|
|
72
|
+
"cdp-scraper": {
|
|
73
|
+
"command": "python",
|
|
74
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
75
|
+
"cwd": "/path/to/mcp-cdp-scraper"
|
|
76
|
+
},
|
|
77
|
+
"crypto-monitor": {
|
|
78
|
+
"command": "python",
|
|
79
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
80
|
+
"cwd": "/path/to/mcp-crypto-monitor"
|
|
81
|
+
},
|
|
82
|
+
"email-sender": {
|
|
83
|
+
"command": "python",
|
|
84
|
+
"args": ["-m", "src.server", "--stdio"],
|
|
85
|
+
"cwd": "/path/to/mcp-email-sender",
|
|
86
|
+
"env": {
|
|
87
|
+
"SMTP_HOST": "smtp.gmail.com",
|
|
88
|
+
"SMTP_PORT": "587",
|
|
89
|
+
"SMTP_USERNAME": "your@gmail.com",
|
|
90
|
+
"SMTP_PASSWORD": "your-app-password",
|
|
91
|
+
"SMTP_TLS": "true"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Hermes Agent Config
|
|
99
|
+
|
|
100
|
+
```yaml
|
|
101
|
+
mcp:
|
|
102
|
+
servers:
|
|
103
|
+
cdp-scraper:
|
|
104
|
+
command: python
|
|
105
|
+
args: ["-m", "src.server", "--stdio"]
|
|
106
|
+
cwd: /path/to/mcp-cdp-scraper
|
|
107
|
+
|
|
108
|
+
crypto-monitor:
|
|
109
|
+
command: python
|
|
110
|
+
args: ["-m", "src.server", "--stdio"]
|
|
111
|
+
cwd: /path/to/mcp-crypto-monitor
|
|
112
|
+
|
|
113
|
+
email-sender:
|
|
114
|
+
command: python
|
|
115
|
+
args: ["-m", "src.server", "--stdio"]
|
|
116
|
+
cwd: /path/to/mcp-email-sender
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## mcp-cdp-scraper — Web Scraping via Chrome DevTools Protocol
|
|
120
|
+
|
|
121
|
+
**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`
|
|
122
|
+
|
|
123
|
+
Connects to any Chrome/Chromium instance via raw WebSocket CDP. React/Vue compatible form filling using native setters + synthetic events. No Playwright, no Selenium.
|
|
124
|
+
|
|
125
|
+
```python
|
|
126
|
+
from src.server import MCPCDPScraperServer
|
|
127
|
+
|
|
128
|
+
server = MCPCDPScraperServer()
|
|
129
|
+
result = server.handle_tool_call("scrape_page", {"url": "https://news.ycombinator.com"})
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## mcp-crypto-monitor — Crypto Wallet & Price Monitoring
|
|
133
|
+
|
|
134
|
+
**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`
|
|
135
|
+
|
|
136
|
+
Uses free public APIs only — Blockchain.info, Etherscan, CoinGecko, Binance, alternative.me. No API keys required.
|
|
137
|
+
|
|
138
|
+
```python
|
|
139
|
+
from src.server import MCPCryptoMonitorServer
|
|
140
|
+
|
|
141
|
+
server = MCPCryptoMonitorServer()
|
|
142
|
+
result = server.handle_tool_call("get_portfolio_value", {"holdings": {"BTC": 0.5, "ETH": 10.0}})
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## mcp-email-sender — Email Validation & SMTP
|
|
146
|
+
|
|
147
|
+
**8 tools**: `validate_email`, `validate_email_batch`, `check_mx_records`, `is_disposable`, `is_role_based`, `send_email`, `send_email_batch`, `test_smtp_connection`
|
|
148
|
+
|
|
149
|
+
Email validation (format, disposable, role-based, MX records) + SMTP sending (TLS/SSL, CC/BCC, batch). Pure stdlib (smtplib, email, re, socket).
|
|
150
|
+
|
|
151
|
+
```python
|
|
152
|
+
from src.server import MCPEmailServer
|
|
153
|
+
|
|
154
|
+
server = MCPEmailServer()
|
|
155
|
+
result = server.handle_tool_call("validate_email", {"email": "user@gmail.com"})
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
## Architecture
|
|
159
|
+
|
|
160
|
+
Each server follows the same pattern:
|
|
161
|
+
|
|
162
|
+
```
|
|
163
|
+
MCP Client (Claude / Hermes / any)
|
|
164
|
+
│ JSON-RPC over STDIO
|
|
165
|
+
▼
|
|
166
|
+
MCPServer (src/server.py)
|
|
167
|
+
│ Tool dispatch + schema
|
|
168
|
+
▼
|
|
169
|
+
Engine (src/<engine>.py)
|
|
170
|
+
│ Zero-dep business logic
|
|
171
|
+
▼
|
|
172
|
+
External API / Chrome / SMTP
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
## Testing
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
# Run all tests
|
|
179
|
+
cd mcp-cdp-scraper && python -m pytest tests/ -q # 38 passed
|
|
180
|
+
cd mcp-crypto-monitor && python -m pytest tests/ -q # 30 passed
|
|
181
|
+
cd mcp-email-sender && python -m pytest tests/ -q # 37 passed
|
|
182
|
+
# Total: 105 tests, all passing
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
## License
|
|
186
|
+
|
|
187
|
+
MIT — all three servers
|
|
188
|
+
|
|
189
|
+
## Author
|
|
190
|
+
|
|
191
|
+
aaameobius-crypto — [github.com/aaameobius-crypto](https://github.com/aaameobius-crypto)
|
|
192
|
+
|
|
193
|
+
BTC/USDT/ETH/XMR accepted via [@darkbot_ai_bot](https://t.me/darkbot_ai_bot)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mcp-tools-bundle"
|
|
7
|
+
version = "1.1.0"
|
|
8
|
+
description = "3 zero-dependency MCP servers in pure Python"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
authors = [{name = "aaameobius-crypto"}]
|
|
13
|
+
keywords = ["mcp", "ai", "agent", "tools"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 4 - Beta",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://github.com/aaameobius-crypto/mcp-tools-bundle"
|