MCP Hub
Back to servers

Text-Toolkit

A comprehensive MCP server providing a wide array of text transformation tools, including case conversion, encoding/decoding, code formatting, hashing, and regex operations. It enables models to perform programmatic text manipulation and analysis through standardized interfaces.

Stars
2
Tools
43
Updated
Jan 9, 2026
Validated
Feb 13, 2026

文本转换工具 Text Toolkit

一个提供文本转换、格式化和分析功能的MCP服务器,可直接集成到开发工作流中。 An MCP server that provides text conversion, formatting, and analysis functions, which can be directly integrated into the development workflow.## 工具列表 Tool List

本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。

工具 Tool描述 Description
case_to_camelConvert text to camelCase
case_to_pascalConvert text to PascalCase
case_to_snakeConvert text to snake_case
case_to_kebabConvert text to kebab-case
case_to_constantConvert text to CONSTANT_CASE
case_to_dotConvert text to dot.case
case_to_noConvert text to no case
case_to_pascal_snakeConvert text to Pascal_Snake_Case
case_to_pathConvert text to path/case
case_to_sentenceConvert text to Sentence case
case_to_trainConvert text to Train-Case
case_to_capitalConvert text to Capital Case
encode_base64Encode text to Base64
decode_base64Decode Base64 to text
encode_urlEncode text for URLs
decode_urlDecode URL-encoded text
encode_htmlEncode HTML entities
decode_htmlDecode HTML entities
format_jsonFormat and beautify JSON
format_xmlFormat and beautify XML
format_sqlFormat and beautify SQL
format_htmlFormat and beautify HTML
count_charactersCount characters in text
count_wordsCount words in text
count_linesCount lines in text
analyze_readabilityCalculate readability metrics
string_trimTrim whitespace from text
string_substringExtract a substring
string_replaceReplace text
string_splitSplit text into an array
string_joinJoin an array into text
generate_uuidGenerate a UUID
validate_uuidValidate a UUID
generate_md5Generate MD5 hash
generate_sha1Generate SHA-1 hash
generate_sha256Generate SHA-256 hash
generate_sha512Generate SHA-512 hash
generate_hmacGenerate HMAC hash
generate_lorem_ipsumGenerate lorem ipsum text
regex_testTest a regex pattern against text
regex_replaceReplace text using a regex pattern
regex_extractExtract matches using a regex pattern
regex_splitSplit text using a regex pattern

检查服务 ## Inspector

工具在线测试: https://mcp.xiaobenyang.com/inspector/1777316659720195

Online Tool test https://mcp.xiaobenyang.com/inspector/1777316659720195

服务配置 MCP Server Config

如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?

访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.

SSE

{
  "mcpServers": {
    "文本转换工具": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777316659720195/sse"
    }
  }
}

STREAMABLE HTTP

{
  "mcpServers": {
    "文本转换工具": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777316659720195/mcp"
    }
  }
}

STDIO

{
    "mcpServers": {
        "文本转换工具": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777316659720195",
          },
          "transport": "stdio"
        }
      }
}

Reviews

No reviews yet

Sign in to write a review