Skip to main content
Glama

Casper Tools — MCP server (12 agent utilities)

magiautonomous/casper-tools MCP server

A Model Context Protocol (MCP) server exposing 12 small, fast, dependency-light utilities that AI agents reach for constantly: JSON inspection, regex testing, cron parsing, hashing, base64 encoding/decoding, URL analysis, color conversion, text diffing, CSV parsing, JWT decode/verification, Markdown-to-HTML rendering, and UUID/token minting.

Transport: Streamable HTTP. Auth: none (open public endpoint). No API keys. Free to use.

Live endpoint

https://determines-product-administration-farmer.trycloudflare.com

Related MCP server: mcp-server-devutils

Quick Example

Connect any MCP client and call tools with standard JSON-RPC over Streamable HTTP. No auth, no keys, no setup.

Initialize the session:

{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}

Call json_inspect on a sample payload:

{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"json_inspect","arguments":{"data":{"user":"alice","role":"admin"}}}}

Response includes type, summary, keyCount, depth, and hasArrays.

Call hash_compute on a string:

{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"hash_compute","arguments":{"input":"hello world","algorithm":"sha-256"}}}

Response returns the hex-encoded digest plus algorithm + input length.

Full list of 12 tools, their input schemas, and live response examples are available from the server itself via tools/list once connected.

Tools

Tool

What it does

json_inspect

Parse, validate and summarize JSON documents

regex_test

Test regex patterns against sample strings

cron_parse

Parse/explain cron schedule expressions

hash_compute

Compute MD5/SHA-1/SHA-256/SHA-512 hashes

base64_encode

Base64 encode/decode text and bytes

url_analyze

Normalize, validate and decompose URLs

color_convert

Convert between hex/rgb/hsl/named color formats

text_diff

Line diff between two strings/texts

csv_parse

Parse CSV/TSV into rows, headers, JSON preview

jwt_decode

Decode + verify HMAC-signed JWTs

markdown_to_html

Render Markdown to HTML (escaping raw HTML)

uuid_mint

Generate v4 UUIDs / random URL-safe tokens

Install

Hosted mode — point any MCP client at the live endpoint above (streamable HTTP, no credentials):

{
  "mcpServers": {
    "casper-tools": {
      "url": "https://determines-product-administration-farmer.trycloudflare.com"
    }
  }
}

Local mode (Claude Code / Cursor / any MCP client):

{
  "mcpServers": {
    "casper-tools": {
      "command": "npx",
      "args": ["-y", "casper-tools"]
    }
  }
}

Operation

npm install && npm start runs the server on port 3000 at /mcp (also accepted at the bare host root). Tools are registered from tools.js and each call is appended to logs/calls.jsonl for analytics.

Repo

Source lives in this repository. Published to the official MCP Registry as io.github.magiautonomous/casper-tools. MIT licensed.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Swiss-army-knife utility MCP server for AI agents. 18 tools for JSON validation/formatting, base64 encode/decode, hash generation, UUID generation, URL parsing, regex testing, markdown↔HTML conversion, text stats, slug generation, datetime conversion, cron parsing, text diffing, CSV↔JSON conversion, and JWT decoding. Zero API Key required
    5
    -
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI clients to use developer utilities like JSON formatting, JWT decoding, UUID generation, and more via MCP.
    12
    94
    2
    MIT
  • F
    license
    A
    quality
    C
    maintenance
    A lightweight MCP server providing everyday developer utilities such as JSON formatting, UUID generation, Base64 conversion, HTTP status lookup, and Unix timestamp conversion as tools and resources.
    5
    -

Latest Blog Posts

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/magiautonomous/casper-tools'

If you have feedback or need assistance with the MCP directory API, please join our Discord server