MCP.so
登录

text-count-mcp-server

@yuiseki

关于 text-count-mcp-server

A Model Context Protocol server for text counting

基本信息

分类

其他

许可证

MIT

运行时

node

传输方式

stdio

发布者

yuiseki

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "text-count-mcp-server": {
      "command": "node",
      "args": [
        "build/index.js"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is text-count-mcp-server?

text-count-mcp-server is a Model Context Protocol (MCP) server that provides tools for counting characters and words in text. It is designed to help AI models accurately count text elements, relying on the server’s logic rather than the model’s own counting abilities.

How to use text-count-mcp-server?

Install the package with npm install, then run it as a standalone server using node build/index.js. It can be used with any client that supports the Model Context Protocol.

Key features of text-count-mcp-server

  • count_characters tool: counts characters in a text string
  • count_words tool: counts words in a text string
  • Word counting currently supports English and other space-delimited languages
  • Implements the Model Context Protocol for integration with AI models

Use cases of text-count-mcp-server

  • AI models counting characters in user-provided text
  • AI models counting words in documents or messages
  • Providing accurate text element counts to assist AI in analysis tasks

FAQ from text-count-mcp-server

What languages does text-count-mcp-server support for word counting?

The word counting tool currently supports English and other languages that use spaces to delimit words. Japanese language word counting is not yet supported.

How do I install and run text-count-mcp-server?

Run npm install to install dependencies, then node build/index.js to start the server. It can also be integrated with any MCP-compatible client.

What are the limitations of text-count-mcp-server?

Japanese word counting is not supported. For other languages, space-based word splitting may not be accurate.

What MCP tools does text-count-mcp-server provide?

It provides two tools: count_characters and count_words. Each accepts a text string and returns a text result with the count.

Can I use text-count-mcp-server with any MCP client?

Yes, the server can be used with any client that supports the Model Context Protocol.

评论

其他 分类下的更多 MCP 服务器