Give any AI agent instant payment capabilities via x402 protocol on Solana
{
"mcpServers": {
"io-github-thememebanker-nory-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 34 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
5 tools. ~300 tokens (0.2% of 200K).
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
nory_check_balanceCheck your current wallet balance
nory_payMake a direct payment to a wallet address
nory_x402_requestMake an HTTP request to an x402-enabled API. Automatically handles payment negotiation
nory_discover_servicesFind x402-enabled services you can pay for
nory_payment_historyView your recent payment history
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for io.github.TheMemeBanker/nory-mcp-server 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