Give any AI agent instant payment capabilities via x402 protocol on Solana
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-thememebanker-nory-x402": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The Nory MCP Server enables AI agents and assistants to make instant micropayments using the x402 protocol. Built for the future where AI agents are consumers.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / finance
Persistent memory using a knowledge graph
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for io.github.TheMemeBanker/nory-x402 and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Give any AI agent the ability to pay.
The Nory MCP Server enables AI agents and assistants to make instant micropayments using the x402 protocol. Built for the future where AI agents are consumers.
This is a Model Context Protocol (MCP) server that gives AI assistants like Claude the ability to:
npm install @nory/mcp-server
Or clone and build locally:
git clone https://github.com/nory/mcp-server
cd mcp-server
npm install
npm run build
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"nory": {
"command": "npx",
"args": ["@nory/mcp-server"],
"env": {
"NORY_WALLET_KEY": "your-wallet-private-key",
"NORY_API_URL": "https://api.noryx402.com"
}
}
}
}
Add to your project's .mcp.json:
{
"servers": {
"nory": {
"command": "npx",
"args": ["@nory/mcp-server"],
"env": {
"NORY_WALLET_KEY": "${NORY_WALLET_KEY}"
}
}
}
}
nory_check_balanceCheck your current wallet balance.
"Check my Nory wallet balance"
nory_payMake a direct payment to a wallet address.
"Pay 5 USDC to GkXn9...abc with memo 'Thanks!'"
nory_x402_requestMake an HTTP request to an x402-enabled API. Automatically handles payment negotiation.
"Use Nory to fetch data from https://api.noryx402.com/data/crypto"
nory_discover_servicesFind x402-enabled services you can pay for.
"What x402 services are available for AI tasks?"
nory_payment_historyView your recent payment history.
"Show me my last 10 Nory transactions"
All of this happens automatically when you use nory_x402_request.
User: "Use Nory to get the latest crypto prices from the premium data feed"
Claude: I'll use the Nory x402 payment system to access this paid API.
[Calls nory_x402_request with url="https://api.noryx402.com/data/crypto"]
Result: Successfully paid 0.0001 USDC and received the data...
User: "Before we start, check how much I have in my Nory wallet"
Claude: [Calls nory_check_balance]
Your Nory wallet (GkXn...abc) has:
- 100.00 USDC
- 1.50 SOL
| Variable | Description | Required |
|---|---|---|
NORY_WALLET_KEY | Your Solana wallet private key | Yes |
NORY_API_URL | Nory API endpoint (default: https://api.noryx402.com) | No |
MIT