CCM
/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

Claude Code Marketplaces

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
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
rog0x avatar

Crypto

rog0x/mcp-crypto-tools
4 toolsSTDIOregistry active
Summary

This server gives Claude cryptographic and encoding operations through five tools: hash (MD5, SHA family, HMAC), encode_decode (Base64, URL, HTML entities, hex, binary with auto-detection), generate_id (UUID v4, nanoid, ULID, CUID), password (generation with configurable charsets and strength checking with entropy calculation), and jwt (decode, expiry checks, unsigned token creation). It's built entirely on Node.js crypto without external dependencies. Reach for this when you need Claude to hash API signatures, decode tokens during debugging sessions, generate test identifiers, or analyze password strength. Everything runs locally through stdio transport, so no data leaves your machine.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Tools

Public tool metadata for what this MCP can expose to an agent.

4 tools
get_spreadReal-time price spread between Binance and OKX. Returns gross%, net% after fees, best route, and profitability verdict.2 params

Real-time price spread between Binance and OKX. Returns gross%, net% after fees, best route, and profitability verdict.

Parameters* required
symbolstring
Crypto symbol: BTC, ETH, SOL, etc.
taker_feenumber
Taker fee per side as decimal. Default 0.001
get_funding_rateCurrent perpetual funding rates on Binance and OKX. Returns 8h rate, annualized yield, next settlement time.1 params

Current perpetual funding rates on Binance and OKX. Returns 8h rate, annualized yield, next settlement time.

Parameters* required
symbolstring
Crypto symbol: BTC, ETH, SOL, etc.
get_cash_carryCash & Carry arbitrage yield calculator. Buy spot + short perp = near-zero market risk + funding income.2 params

Cash & Carry arbitrage yield calculator. Buy spot + short perp = near-zero market risk + funding income.

Parameters* required
capital_usdtnumber
Optional: capital in USDT to estimate profit.
symbolstring
Crypto symbol: BTC, ETH, SOL, etc.
get_exchange_statusLive operational status of Binance and OKX. Use when user reports failed orders or unexpected errors.

Live operational status of Binance and OKX. Use when user reports failed orders or unexpected errors.

No parameter schema in public metadata yet.

mcp-crypto-tools

Cryptography and encoding tools for AI agents, served via the Model Context Protocol (MCP).

Tools

hash

Hash text using MD5, SHA-1, SHA-256, SHA-512, or HMAC. Compare two hash values. Compute all algorithms at once.

Actions: hash, hmac, compare, hash_all

encode_decode

Encode and decode text using Base64, URL encoding, HTML entities, hex, or binary. Auto-detect encoding format.

Actions: base64_encode, base64_decode, url_encode, url_decode, html_encode, html_decode, hex_encode, hex_decode, binary_encode, binary_decode, detect

generate_id

Generate unique identifiers: UUID v4, nanoid, ULID, CUID, or random strings with configurable length and charset.

Types: uuid, nanoid, ulid, cuid, random

password

Generate secure passwords with configurable character sets, length, and count. Check password strength with entropy calculation and crack time estimation.

Actions: generate, check_strength

jwt

Decode JWT tokens to inspect header and payload, check expiry status, or create unsigned JWTs for testing.

Actions: decode, check_expiry, create_unsigned

Setup

npm install
npm run build

MCP Configuration

Add to your MCP client configuration:

{
  "mcpServers": {
    "crypto-tools": {
      "command": "node",
      "args": ["D:/products/mcp-servers/mcp-crypto-tools/dist/index.js"]
    }
  }
}

Dependencies

  • @modelcontextprotocol/sdk - MCP server framework
  • Node.js built-in crypto module - all cryptographic operations

No external crypto libraries required.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Finance & Commerce
Registryactive
Package@rog0x/mcp-crypto-tools
TransportSTDIO
UpdatedMar 22, 2026
View on GitHub

More from rog0x

  • Database
  • Dep
  • Docs
  • Env
  • File
  • Git
  • Github
  • I18n
  • Image
  • Json
  • Lint
  • Markdown
  • Math
  • Network
  • Npm
  • Perf
  • Regex
  • Schema
  • Seo
  • String
  • Task
  • Time
  • Web
  • Webhook

Related Finance & Commerce MCP Servers

View all →
therealmrfunguy avatar
CryptoPrice

io.github.therealmrfunguy/crypto-price

Real-time cryptocurrency prices, market data, and trending coins via CoinGecko.
therealmrfunguy avatar
SolanaPay

io.github.therealmrfunguy/solana-pay

On-chain Solana payments for MCP services with SOL and USDC support.
trevorflipper avatar
NEAR, Solana & Base Blockchain Data Gateway

io.github.trevorflipper/near-solana-blockchain-api

24 NEAR + Solana + Base blockchain endpoints with x402 USDC micropayments
io.phoslabs avatar
Phos Labs Commerce Intelligence

io.phoslabs/commerce-intelligence

Commerce intelligence for AI agents. Diagnose drop-offs, fix checkouts, optimize pricing.
hydrop-inc avatar
Checkout Cod

lat.oktopus/checkout-cod

Riel de pago contra entrega (COD) para LATAM: crea órdenes y cobra con Dropi vía MCP.
lmktoday avatar
LMK.today MCP

lmktoday/commerce

Give any AI agent a shopping brain. LMK.today is an open Model Context Protocol server with curated cross-merchant search, real price history, live demand signals, and editorial gift collections — no account required. More at https://lmk.today/mcp