Model Context Protocol (MCP) Server
Turn Useful Utilities into a native toolkit for your AI agents. Connect Claude Desktop, Cursor, or your custom AI to our serverless MCP endpoint to automatically sanitize filenames, detect homoglyphs, format JSON, and more.
What is the MCP Server?
The Model Context Protocol (MCP) is an open standard that enables AI models to securely connect to external data sources and tools. Instead of manually pasting data into our web interface, your AI agent can call our tools autonomously behind the scenes.
Available Tools
sanitize_filename: Automatically removes forbidden characters and handles Windows reserved names to preventInvalidCharError.detect_homoglyphs: Scans strings for Unicode lookalike characters, zero-width spaces, and invisible markers used in spoofing attacks.format_json: Validates, prettifies, or minifies JSON strings. Can recursively sort JSON keys.calculate_time_difference: Precisely calculates the duration between two ISO-8601 date strings down to the millisecond.
How to Connect (Claude Desktop / Cursor)
We provide an SSE (Server-Sent Events) endpoint. You can connect to it using the official MCP Inspector proxy, which bridges stdio to our remote web server.
Add the following configuration to your claude_desktop_config.json or Cursor settings:
{
"mcpServers": {
"useful-utilities": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/inspector",
"https://www.usefulutils.in/api/mcp"
],
"env": {
"AUTHORIZATION": "Bearer YOUR_FREE_API_KEY"
}
}
}
}Rate Limits & API Keys
To protect our serverless infrastructure, access to the MCP server requires a free API key.
- Free Tier Limit: 200 tool calls per day per API key.
- Data Privacy: All data sent to the MCP server is processed in-memory ephemerally and is never stored or logged.
Sign up is currently in beta. Email support to request a free key.