lit-forge MCP server
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., "@lit-forge MCP serverCan you format this JSON for me?"
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.
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 |
| JSON formatting (pretty) / compression (minify) |
| Regex matching (JavaScript compatible, flag support, named group support) |
| Decodes JWT into Header / Payload / Signature (includes human-readable exp/nbf/iat and expiration check) |
| Base64 encoding/decoding (UTF-8 / URL-safe support) |
| URL percent encoding/decoding (component / URI switching) |
| MD5 / SHA-1 / SHA-256 / SHA-384 / SHA-512 (hex / base64) |
| Bulk generation of up to 100 UUID v4 / v7 |
| Unix timestamp ⇔ ISO 8601 datetime (second/millisecond switching) |
| YAML ⇔ JSON mutual conversion (js-yaml) |
| 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.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
For Claude Code
claude mcp add lit-forge -- npx -y lit-forge-mcpFor 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.jsIf 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-5in 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 withalice@example.com bob@test.jp."
License
MIT
Maintenance
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
- FlicenseNot gradedqualityDmaintenanceEnables file system operations, web scraping, and AI-powered search through MCP tools for use by LLM agents.1
- FlicenseNot gradedqualityDmaintenanceProvides a versatile set of utility tools for LLMs, including text processing, web fetching, and search capabilities, all accessible via MCP.
- FlicenseNot gradedqualityDmaintenanceProvides various developer utilities such as UUID generation, timestamp conversion, Base64 encoding, color conversion, password generation, hash generation, and JSON formatting via MCP.771
- AlicenseNot gradedqualityDmaintenanceProvides a comprehensive set of developer utilities including UUID generation, email validation, hashing, JSON manipulation, Brazilian document handling, and more, accessible via MCP.252MIT
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/noblabs/lit-forge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server