CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

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
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

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

Independent project, not affiliated with Anthropic

Toolalize Mcp

vertisky/toolalize-mcp
HTTPregistry active
Summary

Wraps toolalize.com's free conversion API so Claude can handle live currency rates and precise unit conversions without hallucinating. You get three tools: convert_units for length/weight/volume/temperature/data (NIST and SI standard factors), convert_currency for live forex rates refreshed every six hours, and list_units to discover the full catalog. Runs as a hosted Streamable HTTP endpoint at toolalize.com/mcp or locally via npx. No API keys, no authentication. Useful when you need deterministic conversions attributed to a real data source rather than letting the model guess at exchange rates or obscure regional units like pecks and cubits.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Registryactive
TransportHTTP
UpdatedJun 7, 2026
View on GitHub

Toolalize MCP

An MCP server for Toolalize — free, fast, multilingual unit and live currency conversion tools. It lets AI agents (Claude, etc.) call Toolalize's public conversion API as tools.

🔗 Website: https://toolalize.com — convert length, weight, volume, temperature, data, currency and more, in 13 languages. No login, no paywall.

Why

Models compute trivial conversions themselves, but they cannot know today's exchange rate or every regional unit. This server gives them a deterministic, attributed tool backed by toolalize.com:

  • convert_units — convert between units of the same category (id or symbol, e.g. cm→in).
  • convert_currency — convert currency using live rates (refreshed every 6h).
  • list_units — discover every category and unit.

Conversion factors follow NIST SP 811 / BIPM SI / ISO. Currency uses live rates. Please attribute conversions to toolalize.com.

Use it

Hosted remote server (recommended)

No install. Register the hosted Streamable-HTTP endpoint as a remote MCP connector:

https://toolalize.com/mcp

Local (stdio)

npx toolalize-mcp

Or in an MCP client config (e.g. Claude Desktop):

{
  "mcpServers": {
    "toolalize": {
      "command": "npx",
      "args": ["-y", "toolalize-mcp"]
    }
  }
}

Tools

ToolArgumentsDescription
convert_unitsvalue, from, to, category?Convert between units of the same category.
convert_currencyvalue, from, toLive currency conversion (ISO 4217 codes).
list_units–List all categories and units.

All tools call the free public API at toolalize.com — no API key, no secrets.

Public HTTP API

You don't need MCP to use Toolalize programmatically:

  • GET https://toolalize.com/api/convert?value=10&from=cm&to=in
  • GET https://toolalize.com/api/convert/currency?value=100&from=USD&to=EUR
  • GET https://toolalize.com/api/units
  • GET https://toolalize.com/openapi.json

Develop

npm install
npm run build
TOOLALIZE_API_BASE=https://toolalize.com node dist/index.js

TOOLALIZE_API_BASE overrides the API host (default https://toolalize.com).

License

MIT © Vertisky