14 developer tools for your AI agents
Works with Claude Desktop, Claude Code, and any MCP-compatible client. Zero API calls. All local computation.
npm install -g xsantcastx-mcp-server Add to ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"xsantcastx": {
"command": "xsantcastx-mcp-server"
}
}
}Run this command in your terminal:
claude mcp add xsantcastx-mcp-server -- xsantcastx-mcp-serverEvery tool runs locally — no network, no latency, no keys required.
json_format({ json: '{"a":1}', indent: 2 })json_schema_generate({ sample: '{"id":1,"name":"Alice"}' })uuid_generate({ count: 5 })uuid_validate({ uuid: "..." })base64_encode({ text: "hello" })base64_decode({ encoded: "aGVsbG8=" })jwt_decode({ token: "eyJ..." })regex_test({ pattern: "\\d+", input: "abc123" })regex_replace({ pattern: "foo", replacement: "bar", input: "foo baz" })hash_generate({ text: "hello", algorithm: "sha256" })hash_verify({ text: "hello", hash: "...", algorithm: "sha256" })color_contrast({ foreground: "#fff", background: "#0a0f1e" })cron_parse({ expression: "0 9 * * 1-5" })cron_build({ minute: "0", hour: "9", weekday: "1-5" })Runs entirely on your machine. No network requests, no latency.
No API keys, no environment variables, no auth.
Lightweight, fast, zero native dependencies.
Open source. Use it, fork it, extend it.