alliotools-mcp
The alliotools-mcp server provides 176+ privacy-first local utility tools (plus network tools) for AI assistants, running entirely on your machine with no API keys or data sent externally.
๐งฎ Calculators (15 tools): Percentage, compound interest, BMI, age, tip, discount, profit margin, salary conversions, loan payments, break-even analysis, markup, area (8 shapes), fuel cost, inflation-adjusted values (1913โ2024), and calorie needs (TDEE/BMR).
๐ Converters (5 tools): Units (length, weight, temperature, volume, speed, etc.), number bases (binary/octal/decimal/hex), Roman numerals (1โ3999), numbers to English words, and color formats (HEX/RGB/HSL/HSV/CMYK).
๐ ๏ธ Developer Tools (13 tools): Base64 encode/decode, hash generation (MD5/SHA-1/SHA-256/SHA-384/SHA-512), UUID generation (v4), JSON format/minify/validate, URL and HTML entity encode/decode, regex testing, JWT decoding, timestamp conversion, SQL formatting, CSS/JS/HTML minification, and cron expression parsing (plain English + next 5 runs).
๐ Text Tools (11 tools): Word/character/sentence counting, case conversion (upper/lower/title/camelCase/snake_case/kebab/PascalCase/sentence/toggle), text diff, lorem ipsum generation, URL slug creation, palindrome checking, text reversal, duplicate line removal, line sorting, Morse code conversion, and character frequency breakdown.
๐ Date & Time (5 tools): Days between dates or add/subtract days, time zone conversion (IANA/DST-aware), Unix timestamp conversion, ISO week number lookup, and time duration calculation.
๐ Network Tools (5 tools, make external calls): DNS lookups (A/MX/TXT/NS), HTTP header checking, website status checking, IP address/geolocation lookup, and Open Graph/Twitter Card meta tag extraction.
All local tools run with no telemetry or usage tracking. Network tools make direct calls from your machine without any logging or data storage by the server.
Integrates with GitHub Copilot in VS Code agent mode, enabling access to alliotools utilities such as calculators, converters, text tools, and network tools directly within the coding environment.
Integrates with JetBrains AI, allowing developers to use alliotools' privacy-first utilities for tasks like unit conversion, JSON formatting, hashing, and more without leaving the IDE.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@alliotools-mcpcalculate 15% of 200"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
alliotools-mcp
Privacy-first MCP server for allio Tools โ 176+ utilities that run entirely on your machine.
No API keys. No accounts. No data leaves your device.
What is this?
Model Context Protocol (MCP) is an open standard that lets code editors and chat applications connect to external tool servers. This package brings allio Tools' calculators, converters, developer tools, text utilities, and date/time tools directly into any MCP-compatible client โ running entirely as a local process on your machine.
Privacy first: Every tool in this server computes results locally in Node.js. Nothing is sent to allio.tools or any third-party service. The only exceptions are the network tools (marked with ๐), which make external calls by design โ for example, a DNS lookup must contact a DNS server.
Update checks โ what this server does and doesn't send
This server checks at most once every 24 hours whether a newer version of alliotools-mcp is available, so you find out about new tools, improvements, and bug fixes without having to manually check npm. This check is completely separate from tool usage:
It's a single anonymous
GETof a static, public JSON file (changelog.json) hosted on this project's own GitHub repo โ nothing about how you use the tools (which tools, what arguments, what results) is ever read or sent.It never blocks or slows down a tool call โ the check runs in the background, and if it hasn't finished (or the machine is offline) a tool just runs normally with no update notice.
If a newer version exists, a short notice is appended to the next tool result so you (or your AI assistant) see it inline โ no popups, no separate process.
The only thing written locally is a small cache file at
~/.alliotools-mcp/update-check.json(just a timestamp + the latest known version) so the check doesn't re-run on every single tool call.
Related MCP server: brasil-mcp-essentials
Tools included
Calculators (local โ)
Tool | Description |
| X% of Y, X is what % of Y, percentage change |
| Final amount, interest earned, year-by-year breakdown |
| BMI and weight category (metric or imperial) |
| Exact age in years/months/days + next birthday |
| Tip amount and split between people |
| Discounted price and amount saved |
| Gross margin and markup percentage |
| Convert between hourly/daily/weekly/monthly/annual |
| Monthly payment and total interest |
| Break-even units and revenue |
| Selling price from markup or markup from price |
| Area of 8 shapes: rectangle, circle, triangleโฆ |
| Trip fuel cost (metric or imperial) |
| Inflation-adjusted value 1913โ2024 (embedded CPI data) |
| TDEE, BMR, and macro targets |
Converters (local โ)
Tool | Description |
| Length, weight, temperature, volume, speed, area, data |
| Binary โ Octal โ Decimal โ Hex |
| Roman numerals โ integers (1โ3999) |
| 1234 โ "one thousand two hundred thirty-four" |
| HEX โ RGB โ HSL โ HSV โ CMYK |
Developer Tools (local โ)
Tool | Description |
| Encode/decode Base64 |
| MD5, SHA-1, SHA-256, SHA-384, SHA-512 |
| Generate 1โ100 UUIDs (v4, cryptographically random) |
| Format, minify, or validate JSON |
| Encode/decode URLs and URL components |
| Encode/decode HTML entities |
| Test regex patterns with match positions and groups |
| Decode JWT header and payload, check expiry |
| Unix timestamp โ human-readable date |
| Format and beautify SQL queries |
| Minify CSS, JavaScript, or HTML |
| HEX โ RGB color conversion |
| Parse cron expressions in plain English + next 5 runs |
Text Tools (local โ)
Tool | Description |
| Words, characters, sentences, paragraphs, reading time |
| UPPER, lower, Title, camelCase, snake_case, kebab-case, PascalCase |
| Line-by-line diff between two texts |
| Generate placeholder text (paragraphs/sentences/words) |
| Convert text to URL-friendly slug |
| Check if text reads the same forwards and backwards |
| Reverse by characters, words, or lines |
| Remove duplicate lines from text |
| Sort lines alphabetically, by length, or randomly |
| Text โ Morse code |
| Character count with frequency breakdown |
Date & Time (local โ)
Tool | Description |
| Days between dates, add/subtract days |
| Convert times between any IANA time zones |
| Unix timestamp โ human-readable |
| ISO week number and week date range |
| Duration between times, add durations |
Network Tools (๐ makes external calls)
These tools work by contacting external services. No data is stored or logged by allio Tools โ the call goes directly from your machine to the target.
Tool | External call made |
| DNS query to resolve A, MX, TXT, NS records |
| HTTP HEAD request to target URL |
| HTTP request to check if site is up |
| DNS lookup + optional geolocation API |
| HTTP GET to extract OG/Twitter Card meta tags |
Installation & Setup
Prerequisites
Node.js v18 or higher
No other dependencies. No API keys. No configuration files.
Claude Desktop
Edit ~/AppData/Roaming/Claude/claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (Mac):
{
"mcpServers": {
"alliotools": {
"command": "npx",
"args": ["-y", "alliotools-mcp"]
}
}
}Restart Claude Desktop. You'll see "alliotools" in the tools panel.
Cursor
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"alliotools": {
"command": "npx",
"args": ["-y", "alliotools-mcp"]
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"alliotools": {
"command": "npx",
"args": ["-y", "alliotools-mcp"]
}
}
}VS Code (with Cline, Roo Code, or Continue)
Add to your .vscode/mcp.json or the extension's config file:
{
"mcpServers": {
"alliotools": {
"command": "npx",
"args": ["-y", "alliotools-mcp"]
}
}
}Zed
In ~/.config/zed/settings.json:
{
"context_servers": {
"alliotools": {
"command": {
"path": "npx",
"args": ["-y", "alliotools-mcp"]
}
}
}
}Amazon Q Developer
Edit ~/.aws/amazonq/mcp.json:
{
"mcpServers": {
"alliotools": {
"command": "npx",
"args": ["-y", "alliotools-mcp"]
}
}
}GitHub Copilot (VS Code agent mode)
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"alliotools": {
"type": "stdio",
"command": "npx",
"args": ["-y", "alliotools-mcp"]
}
}
}JetBrains AI
Go to Settings โ Tools โ AI Assistant โ Model Context Protocol and add:
Command:
npxArguments:
-y alliotools-mcp
Privacy
This MCP server was built with privacy as the primary design constraint.
Local tools (all calculators, converters, developer tools, text tools, date/time tools): All computation happens in the Node.js process on your machine. No network requests are made. No data is transmitted anywhere.
Network tools (DNS lookup, HTTP header checker, website status, IP lookup, OG preview): These tools exist to query external resources โ that's their purpose. The request goes directly from your machine to the target. allio Tools never sees the request.
No telemetry. No analytics. No usage tracking. No crash reporting.
Open source. You can read every line of this code and verify it yourself.
Using with your AI
Once installed, just ask naturally:
"Calculate compound interest on $10,000 at 5% for 20 years, compounded monthly"
"Convert 180 lbs to kg"
"How many days between March 15 2024 and November 30 2024?"
"Generate 5 UUIDs"
"What is the SHA-256 hash of 'hello world'?"
"Convert 9:30 AM New York time to London time"
"Look up DNS records for allio.tools"
"Is https://example.com up?"
License
MIT โ see LICENSE
Built with โค๏ธ by allio Tools โ free online tools for everyone.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DesignbyFahad/alliotools-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server