streamable-httpMITupdated 3mo ago
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.
toolalize mcp 能做什么?
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
| Tool | Arguments | Description |
|---|---|---|
convert_units |
value, from, to, category? |
Convert between units of the same category. |
convert_currency |
value, from, to |
Live 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=inGET https://toolalize.com/api/convert/currency?value=100&from=USD&to=EURGET https://toolalize.com/api/unitsGET 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
安装
把 toolalize mcp 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http toolalize-mcp https://toolalize.com/mcpcodex mcp add toolalize-mcp --url https://toolalize.com/mcp{
"mcpServers": {
"toolalize-mcp": {
"url": "https://toolalize.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"toolalize-mcp": {
"type": "http",
"url": "https://toolalize.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"toolalize-mcp": {
"url": "https://toolalize.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"toolalize-mcp": {
"serverUrl": "https://toolalize.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
3 个工具
toolalize mcp 向已连接的智能体提供 3 个工具。
- convert_units
- `value`, `from`, `to`, `category?`
- convert_currency
- `value`, `from`, `to`
- list_units
- –
评分
70 / 100
良好
- 文档22/25
- 维护16/25
- 可信度16/20
- 能力4/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 86 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 1.0.1最新 | 2026年6月7日 |