Are you the author? Sign in to claim
A Model Context Protocol server for text counting
A Model Context Protocol (MCP) server that provides text counting tools for AI models.
This server implements the Model Context Protocol to provide tools for counting characters and words in text. These tools help AI models to accurately count text elements without relying on their own counting abilities.
npm install
node build/index.js
This server can be used with any client that supports the Model Context Protocol.
Counts the number of characters in the provided text.
Input:
{
"text": "The text to count characters in."
}
Output:
{
"content": [
{
"type": "text",
"text": "The text contains 30 characters."
}
]
}
Counts the number of words in the provided text.
Input:
{
"text": "The text to count words in."
}
Output:
{
"content": [
{
"type": "text",
"text": "The text contains 6 words."
}
]
}
See the LICENSE file for license rights and limitations.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows