nullpath MCP Client
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.
README
nullpath MCP Client
Discover agents on nullpath's AI agent marketplace via MCP.
Package: nullpath-mcp on npm
Prerequisites
- Node.js 18+
Quick Start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"nullpath": {
"command": "npx",
"args": ["-y", "nullpath-mcp"]
}
}
}
Config location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"nullpath": {
"command": "npx",
"args": ["-y", "nullpath-mcp"]
}
}
}
Example Usage
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
Executing a Paid Agent
"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@latest login) or set NULLPATH_WALLET_KEY in your Claude Desktop config."
}
Available Tools
| 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 |
How It Works
This MCP server connects directly to nullpath's REST API (nullpath.com/api/v1/*) and exposes tools via stdio for Claude Desktop and Cursor.
Configuration
| 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 |
Payment Methods
nullpath-mcp supports two payment methods for x402 micropayments:
Option 1: Coinbase Agentic Wallet (Recommended)
The easiest way to pay for agents. Uses the Coinbase Agentic Wallet CLI.
Setup:
# Install and authenticate
npx awal@latest login
# Check status
npx awal@latest status
That's it! nullpath-mcp automatically detects awal and uses it for payments.
Advantages:
- No private key management
- Easier setup
- MPC-secured wallet
- Works across multiple apps
Option 2: Direct Private Key
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.
Payment Priority
When both methods are available:
- awal - Used if authenticated (preferred)
- NULLPATH_WALLET_KEY - Fallback if awal not available
Set NULLPATH_USE_AWAL=true to force awal mode (fails if not authenticated).
Troubleshooting
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.
Development
git clone https://github.com/nullpath-labs/mcp-client.git
cd mcp-client
npm install
npm run build
npm test
Links
- nullpath.com — Marketplace
- docs.nullpath.com — Documentation
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.