Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides various developer utilities such as UUID generation, timestamp conversion, Base64 encoding, color conversion, password generation, hash generation, and JSON formatting via MCP.

README.md

开发者工具箱 MCP 服务器

一个功能丰富的 Model Context Protocol (MCP) 服务器,为开发者提供各种实用工具,包括 UUID 生成、时间戳转换、Base64 编码、颜色转换、密码生成等功能。

✨ 功能特性

1. UUID 生成器 (generate_uuid)

生成一个或多个 UUID(通用唯一标识符)

参数:

  • count (可选): 要生成的 UUID 数量,默认为 1

示例: ``json { "count": 3 } ``

2. 时间戳转换器 (timestamp_converter)

在 Unix 时间戳和日期时间之间进行转换,支持秒和毫秒格式

参数:

  • timestamp (可选): Unix 时间戳(秒或毫秒)
  • datetime (可选): ISO 格式的日期时间字符串
  • 如果不提供参数,返回当前时间信息

示例: ``json { "timestamp": 1704067200 } ``

3. Base64 编码/解码 (base64_converter)

对文本进行 Base64 编码或解码

参数:

  • text (必需): 要编码或解码的文本
  • operation (必需): 操作类型,"encode""decode"

示例: ``json { "text": "Hello World", "operation": "encode" } ``

4. 颜色格式转换器 (color_converter)

在不同颜色格式之间转换(HEX、RGB、HSL)

参数:

  • hex (可选): HEX 颜色值,如 #FF5733FF5733
  • rgb (可选): RGB 颜色值,如 rgb(255, 87, 51)255,87,51
  • hsl (可选): HSL 颜色值

示例: ``json { "hex": "#FF5733" } ``

5. 随机密码生成器 (generate_password)

生成安全的随机密码,可自定义长度和字符类型

参数:

  • length (可选): 密码长度,默认为 16
  • include_uppercase (可选): 包含大写字母,默认为 true
  • include_lowercase (可选): 包含小写字母,默认为 true
  • include_numbers (可选): 包含数字,默认为 true
  • include_symbols (可选): 包含特殊字符,默认为 true
  • count (可选): 生成密码数量,默认为 1

示例: ``json { "length": 20, "include_symbols": false, "count": 3 } ``

6. 哈希生成器 (generate_hash)

生成文本的哈希值,支持多种算法

参数:

  • text (必需): 要哈希的文本
  • algorithm (可选): 哈希算法,可选值:"md5", "sha1", "sha256", "sha512",默认为 "sha256"

示例: ``json { "text": "Hello World", "algorithm": "sha256" } ``

7. JSON 格式化 (format_json)

格式化或验证 JSON 字符串

参数:

  • json (必需): 要格式化的 JSON 字符串
  • indent (可选): 缩进空格数,默认为 2

示例: ``json { "json": "{\"name\":\"test\",\"value\":123}", "indent": 4 } ``

🚀 安装

  1. 克隆仓库:
git clone https://github.com/MIPyao/MCP-server-test.git
cd MCP-server-test
  1. 安装依赖:
npm install

📖 使用方法

在 Claude Desktop 中使用

  1. 编辑 Claude Desktop 的配置文件(通常在以下位置):
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
  1. 添加 MCP 服务器配置:
{
  "mcpServers": {
    "dev-toolbox": {
      "command": "node",
      "args": ["G:\\WebstormProjects\\MCP-server-test\\src\\server.js"]
    }
  }
}

注意: 请将路径替换为你的实际项目路径。

  1. 重启 Claude Desktop
  1. 现在你可以在 Claude 中直接使用这些工具了!

直接运行

node src/server.js

🛠️ 技术栈

  • Node.js - 运行时环境
  • @modelcontextprotocol/sdk - MCP SDK
  • crypto - Node.js 内置加密模块(用于 UUID 和哈希生成)

📝 许可证

ISC

🤝 贡献

欢迎提交 Issue 和 Pull Request!

📧 联系方式

---

享受开发的乐趣! 🎉

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.