basedhuman-mcp 0.1.0
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.
- package/README.md +24 -0
- package/index.js +3 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# basedhuman-mcp
|
|
2
|
+
|
|
3
|
+
MCP server for [Carbon Contractors](https://carbon-contractors.com) —
|
|
4
|
+
a HaaS platform enabling AI agents to hire and pay humans via USDC on Base.
|
|
5
|
+
|
|
6
|
+
## Connect
|
|
7
|
+
|
|
8
|
+
Add to your Claude config:
|
|
9
|
+
|
|
10
|
+
\```json
|
|
11
|
+
{
|
|
12
|
+
"mcpServers": {
|
|
13
|
+
"carbon-contractors": {
|
|
14
|
+
"type": "streamable-http",
|
|
15
|
+
"url": "https://carbon-contractors.com/api/basedhuman.mcp"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
\```
|
|
20
|
+
|
|
21
|
+
## Learn more
|
|
22
|
+
|
|
23
|
+
- [carbon-contractors.com](https://carbon-contractors.com)
|
|
24
|
+
- [Documentation](https://carbon-contractors.com/learn)
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "basedhuman-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server for Carbon Contractors — HaaS platform enabling AI agents to hire and pay humans via USDC on Base",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": ["mcp", "ai-agents", "usdc", "base", "haas", "x402"],
|
|
7
|
+
"author": "Aaron Clifft",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/carbon-contractors/basedhuman-mcp"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://carbon-contractors.com"
|
|
14
|
+
}
|