文本转换工具

mcpdev/text-transformer
Hosted
2 Stars 2.5k 次浏览 小笨羊 更新于 2026-08-23
该服务暂未提供标准配置,请参考 README 手动接入

可用工具 (8 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

lowercase 1 个参数 需填 1 项

Convert to Lowercase

必填参数:text

uppercase 1 个参数 需填 1 项

Convert to Uppercase

必填参数:text

reverse 1 个参数 需填 1 项

Reverse Text

必填参数:text

isPalindrome 2 个参数 需填 1 项

Check if Palindrome

必填参数:text

countWords 1 个参数 需填 1 项

Count Words

必填参数:text

countCharacters 2 个参数 需填 1 项

Count Characters

必填参数:text

trim 1 个参数 需填 1 项

Trim Whitespace

必填参数:text

capitalize 1 个参数 需填 1 项

Capitalize Words

必填参数:text

服务介绍

文本转换工具

提供多种文本转换功能的MCP服务器,包括大小写转换、反转字符串、检测回文等功能。

工具列表

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

工具名称 描述
lowercase Convert text to lowercase
uppercase Convert text to uppercase
reverse Reverse the order of characters in text
isPalindrome Check if text is a palindrome (reads the same forwards and backwards)
countWords Count the number of words in text
countCharacters Count the number of characters in text
trim Remove leading and trailing whitespace from text
capitalize Capitalize the first letter of each word

检查服务

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

服务配置

如何获取 XBY-APIKEY ?

访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY

SSE

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

STREAMABLE HTTP

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

STDIO

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

相关 MCP 服务