home / mcp / mcp character counter mcp server

MCP Character Counter MCP Server

A lightweight Model Context Protocol (MCP) server that provides detailed character analysis for text.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "webreactiva-devs-mcp-character-counter": {
      "command": "node",
      "args": [
        "/ABSOLUTE/PATH/TO/webreactiva-devs/mcp-character-counter/mcp/character-counter.js"
      ]
    }
  }
}

You have a lightweight MCP server that analyzes text to provide a detailed character breakdown. It counts total characters, characters without spaces, letters, numbers, and symbols, giving you a practical way to understand text composition for editing, quality checks, or accessibility work.

How to use

Install and run the Character Counter MCP server, then connect it to your MCP client. You can ask the MCP to analyze any given text and receive a detailed breakdown of character types. Use it to count characters, identify how many letters or numbers appear, and see how many symbols are present in your text.

How to install

Prerequisites: you need Node.js v17 or higher.

Clone the project and install dependencies.

Configuration and usage notes

To connect the MCP server to your client, configure the MCP server entry with the following settings.

{
  "mcpServers": {
    "character-counter": {
      "command": "node",
      "args": [
        "/ABSOLUTE/PATH/TO/webreactiva-devs/mcp-character-counter/mcp/character-counter.js"
      ]
    }
  }
}

Available tools

count-characters-in-text

Exposes a tool that accepts text input and returns a detailed analysis of character composition, including totals and breakdowns by type.