CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Nory Mcp Server

thememebanker/nory-mcp-server
authSTDIOregistry active
Summary

Gives Claude the ability to make payments and interact with paid APIs using the x402 protocol on Solana. You get five tools: check wallet balance, send direct payments to addresses, make HTTP requests to x402 endpoints with automatic payment handling, discover available paid services, and view transaction history. The server handles the full 402 payment flow automatically, from receiving the payment request to settling on chain in under a second to retrying with proof. You'll need to configure it with a Solana wallet private key. Useful when you want Claude to autonomously pay for API access, tip services, or interact with any x402-enabled endpoint without manual intervention.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Nory MCP Server

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.

What is this?

This is a Model Context Protocol (MCP) server that gives AI assistants like Claude the ability to:

  • Check wallet balances
  • Make direct payments
  • Access paid APIs with automatic x402 payment handling
  • Discover x402-enabled services
  • View payment history

Installation

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

Configuration

For Claude Desktop

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"
      }
    }
  }
}

For Claude Code

Add to your project's .mcp.json:

{
  "servers": {
    "nory": {
      "command": "npx",
      "args": ["@nory/mcp-server"],
      "env": {
        "NORY_WALLET_KEY": "${NORY_WALLET_KEY}"
      }
    }
  }
}

Available Tools

nory_check_balance

Check your current wallet balance.

"Check my Nory wallet balance"

nory_pay

Make a direct payment to a wallet address.

"Pay 5 USDC to GkXn9...abc with memo 'Thanks!'"

nory_x402_request

Make 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_services

Find x402-enabled services you can pay for.

"What x402 services are available for AI tasks?"

nory_payment_history

View your recent payment history.

"Show me my last 10 Nory transactions"

How x402 Works

  1. Request - Agent makes HTTP request to x402-enabled endpoint
  2. 402 Response - Server returns HTTP 402 with payment details
  3. Payment - Agent creates signed transaction via Nory
  4. Settlement - Transaction confirmed on Solana in < 1 second
  5. Access - Agent retries request with payment proof, gets response

All of this happens automatically when you use nory_x402_request.

Example Usage

Access a paid API

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...

Check balance before a task

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

Environment Variables

VariableDescriptionRequired
NORY_WALLET_KEYYour Solana wallet private keyYes
NORY_API_URLNory API endpoint (default: https://api.noryx402.com)No

Security

  • Non-custodial: Your keys never leave your machine
  • Spending limits: Configure max transaction amounts
  • Audit log: All transactions are logged locally

Why Nory?

  • Sub-second settlements on Solana
  • Sub-cent payments enabled
  • HTTP-native - works with any API
  • Multi-chain - Solana, Base, Polygon, Arbitrum, and more
  • Built for AI - designed for autonomous agents

Links

  • Nory Website
  • x402 Protocol Spec
  • API Documentation

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

NORY_WALLET_KEY*secret

Your Solana wallet private key for making payments

NORY_API_URL

Nory API endpoint (default: https://api.noryx402.com)

Categories
AI & LLM ToolsFinance & Commerce
Registryactive
Packagenory-mcp-server
TransportSTDIO
AuthRequired
UpdatedFeb 5, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f