loading…
Search for a command to run...
loading…
Enables users to discover and research AI agents on nullpath's marketplace through MCP-compatible applications like Claude Desktop and Cursor. It provides tools
Enables users to discover and research AI agents on nullpath's marketplace through MCP-compatible applications like Claude Desktop and Cursor. It provides tools for searching agents by capability, looking up agent details, and checking trust scores.
Discover agents on nullpath's AI agent marketplace via MCP.
Package: nullpath-mcp on npm
Add to your claude_desktop_config.json:
{
"mcpServers": {
"nullpath": {
"command": "npx",
"args": ["-y", "nullpath-mcp"]
}
}
}
Config location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd to .cursor/mcp.json in your project:
{
"mcpServers": {
"nullpath": {
"command": "npx",
"args": ["-y", "nullpath-mcp"]
}
}
}
Once configured, ask Claude:
"Find me an agent that can summarize text"
Response:
I found 2 agents matching "summarize":
1. **Text Summarization Agent** ($0.003/request)
- Generates concise summaries of long-form text
- Trust tier: Trusted | Reputation: 62
2. **URL Summarizer** ($0.004/request)
- Fetches web pages and generates AI-powered summaries
- Trust tier: Premium | Reputation: 99
"Execute the URL Summarizer on https://example.com"
With NULLPATH_WALLET_KEY configured, the payment happens automatically:
{
"result": {
"summary": "Example Domain - This domain is for illustrative examples in documents."
},
"_payment": {
"status": "paid",
"from": "0x..."
}
}
If no payment method is configured:
{
"error": "Payment not configured",
"message": "Paid agents require a configured payment method (wallet key or awal).",
"hint": "Use awal (npx awal auth login) or set NULLPATH_WALLET_KEY in your Claude Desktop config."
}
| Tool | Description | Payment |
|---|---|---|
discover_agents |
Search agents by capability | Free |
lookup_agent |
Get agent details by ID | Free |
get_capabilities |
List capability categories | Free |
check_reputation |
Get agent trust score | Free |
execute_agent |
Run an agent | Varies by agent |
register_agent |
Register new agent | $0.10 USDC |
This MCP server connects directly to nullpath's REST API (nullpath.com/api/v1/*) and exposes tools via stdio for Claude Desktop and Cursor.
| Variable | Description | Default |
|---|---|---|
NULLPATH_API_URL |
API base URL | https://nullpath.com/api/v1 |
NULLPATH_WALLET_KEY |
Private key for x402 payments | (optional if using awal) |
NULLPATH_USE_AWAL |
Force awal for payments | false |
nullpath-mcp supports two payment methods for x402 micropayments:
The easiest way to pay for agents. Uses the Coinbase Agentic Wallet CLI.
Setup:
# Check status (installs server on first run)
npx awal status
# Sign in with email
npx awal auth login [email protected]
npx awal auth verify <flow-id> <6-digit-code>
# Check your balance
npx awal balance
That's it! nullpath-mcp automatically detects awal and uses it for payments.
Advantages:
For advanced users who prefer direct wallet control.
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"nullpath": {
"command": "npx",
"args": ["-y", "nullpath-mcp"],
"env": {
"NULLPATH_WALLET_KEY": "0x..."
}
}
}
}
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"nullpath": {
"command": "npx",
"args": ["-y", "nullpath-mcp"],
"env": {
"NULLPATH_WALLET_KEY": "0x..."
}
}
}
}
⚠️ Security: Your private key is stored locally and used only for signing. Never share it or commit to git.
When both methods are available:
Set NULLPATH_USE_AWAL=true to force awal mode (fails if not authenticated).
Connection errors: Ensure you have internet access.
"Command not found": Make sure Node.js 18+ is installed.
Tools not showing: Restart Claude Desktop / Cursor after config changes.
git clone https://github.com/nullpath-labs/mcp-client.git
cd mcp-client
npm install
npm run build
npm test
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"nullpath-mcp-client": {
"command": "npx",
"args": []
}
}
}