MCP.so
Sign In

text-count-mcp-server

@yuiseki

About text-count-mcp-server

A Model Context Protocol server for text counting

Basic information

Category

Other

License

MIT

Runtime

node

Transports

stdio

Publisher

yuiseki

Config

Add this server to your MCP-compatible client using the configuration below.

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

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

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.

Comments

More Other MCP servers