A Model Context Protocol (MCP) Server providing 20+ online developer utilities, accessible via Streamable HTTP transport.
The Model Context Protocol (MCP) is an open standard that enables AI models to securely interact with external tools and data sources. This project implements an MCP Server that exposes JieBang's developer tools as MCP tools, allowing any MCP-compatible AI client (Claude, Cursor, Windsurf, etc.) to directly use these utilities.
| Field | Value |
|---|---|
| Server Name | JieBang Tools |
| Version | 1.7.0 |
| Transport | Streamable HTTP |
| Endpoint | https://www.jiebang.site/mcp |
| Authentication | API Key (Bearer token) |
| Tool | Description |
|---|---|
json-yaml |
Convert between JSON and YAML formats |
sql-format |
Format and beautify SQL queries |
base-convert |
Convert numbers between different bases (binary, octal, decimal, hex) |
html-entity |
Encode/decode HTML entities |
cron-parse |
Parse and explain cron expressions |
| Tool | Description |
|---|---|
seo-check |
Analyze webpage SEO health and meta tags |
meta-extract |
Extract metadata (title, description, OG tags) from any URL |
| Tool | Description |
|---|---|
qrcode |
Generate QR codes from text or URLs |
image-convert |
Convert images between formats (PNG, JPG, WebP, BMP, GIF) |
file-process |
Calculate file hashes (MD5, SHA1, SHA256) and encode/decode Base64 |
| Tool | Description |
|---|---|
timezone-convert |
Convert time between any world timezones |
| Tool | Description |
|---|---|
cron-task |
Create and manage scheduled/cron tasks |
curl -X POST https://www.jiebang.site/api/auth/register \
-H "Content-Type: application/json" \
-d '{"email": "your@email.com", "password": "your-password"}'Response:
{
"api_key": "jb_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}Add to your MCP client configuration (e.g., Claude Desktop, Cursor, Windsurf):
{
"mcpServers": {
"jiebang-tools": {
"url": "https://www.jiebang.site/mcp",
"headers": {
"Authorization": "Bearer jb_your_api_key_here"
}
}
}
}Once configured, your AI assistant can directly call any of the 20+ tools. For example:
- "Convert this JSON to YAML" → calls
json-yaml - "Generate a QR code for https://example.com" → calls
qrcode - "Check the SEO of example.com" → calls
seo-check - "What does the cron expression
0 9 * * 1-5mean?" → callscron-parse
All tools are also available as REST API endpoints:
POST /api/json-yaml
POST /api/sql-format
POST /api/base-convert
POST /api/html-entity
POST /api/cron-parse
POST /api/seo-check
POST /api/meta-extract
POST /api/qrcode
POST /api/image-convert
POST /api/file-process
POST /api/timezone-convert
POST /api/cron-task
Authentication: Include Authorization: Bearer <your-api-key> in request headers.
- 100 API calls/day — No credit card required
- Register at jiebang.site to get started
Prefer a browser? All tools are also available at www.jiebang.site with a user-friendly web interface — no coding required.
- Pure JavaScript, zero dependencies
- Cloudflare Pages + Functions (edge computing)
- Cloudflare KV for API key storage
- 🌐 Website: https://www.jiebang.site
- 📦 MCP Registry: site.jiebang.www/tools
- 📖 Smithery: JieBang Tools on Smithery