Skip to main content
Glama
noblabs

lit-forge MCP server

by noblabs

lit-forge MCP server

A stdio server that allows AI to directly call developer utilities from lit-forge.com via the Model Context Protocol (MCP).

It works with any MCP-compatible AI client, such as Claude Desktop, Claude Code, or Cursor.

Provided Tools (10 types)

Tool Name

Description

format_json

JSON formatting (pretty) / compression (minify)

test_regex

Regex matching (JavaScript compatible, flag support, named group support)

decode_jwt

Decodes JWT into Header / Payload / Signature (includes human-readable exp/nbf/iat and expiration check)

convert_base64

Base64 encoding/decoding (UTF-8 / URL-safe support)

convert_url

URL percent encoding/decoding (component / URI switching)

generate_hash

MD5 / SHA-1 / SHA-256 / SHA-384 / SHA-512 (hex / base64)

generate_uuid

Bulk generation of up to 100 UUID v4 / v7

convert_timestamp

Unix timestamp ⇔ ISO 8601 datetime (second/millisecond switching)

convert_yaml_json

YAML ⇔ JSON mutual conversion (js-yaml)

describe_cron

Makes cron expressions human-readable + calculates next execution times (IANA timezone support)

Everything runs as pure functions (no external API required, stateless). It is useful for formatting JSON output by AI, debugging JWTs, or generating large amounts of UUIDs for test data.

Related MCP server: MCP Toolbox

Installation / Configuration

For Claude Desktop

Add the following to claude_desktop_config.json.

{
  "mcpServers": {
    "lit-forge": {
      "command": "npx",
      "args": ["-y", "lit-forge-mcp"]
    }
  }
}

Configuration file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

For Claude Code

claude mcp add lit-forge -- npx -y lit-forge-mcp

For Cursor

Add the same JSON to ~/.cursor/mcp.json (or .cursor/mcp.json in the project root).

Local Development

git clone https://github.com/noblabs/lit-forge-mcp.git
cd lit-forge-mcp
npm install
npm run build
node dist/index.js   # stdio で起動

Verification

echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"smoke","version":"0.0.1"}}}
{"jsonrpc":"2.0","method":"notifications/initialized"}
{"jsonrpc":"2.0","id":2,"method":"tools/list"}' | node dist/index.js

If 10 tools appear in the tools/list response, it is successful.

Usage Examples

You can make requests to Claude like this:

  • "Decode this JWT and show me the contents of the payload."

  • "Convert name: foo\nlist: [1,2,3] to JSON."

  • "Explain 0 9 * * 1-5 in English, and show the next 5 execution times in Asia/Tokyo."

  • "Generate 20 UUID v7s for test data."

  • "I want to parse email addresses with (\w+)@(\w+), try it with alice@example.com bob@test.jp."

License

MIT

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
2Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides a versatile set of utility tools for LLMs, including text processing, web fetching, and search capabilities, all accessible via MCP.
  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides various developer utilities such as UUID generation, timestamp conversion, Base64 encoding, color conversion, password generation, hash generation, and JSON formatting via MCP.
    77
    1
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides a comprehensive set of developer utilities including UUID generation, email validation, hashing, JSON manipulation, Brazilian document handling, and more, accessible via MCP.
    25
    2
    MIT

View all related MCP servers

Related MCP Connectors

  • Remote MCP server: 10 developer utilities (base64, JWT, DNS, UUID, URL, JSON, UA, IP lookup).

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • JSON/YAML, regex, diff, JWT, SQL dialects — the keyless millisecond ops an agent needs mid-task.

View all MCP Connectors

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/noblabs/lit-forge-mcp'

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