@dennisk2025/text-palindrome-checker
v1.0.0
Published
Checks if a given text is a palindrome, ignoring spaces, punctuation, and case.
Readme
text-palindrome-checker
Checks if a given text is a palindrome, ignoring spaces, punctuation, and case.
Installation
You can use this MCP server directly with npx (no installation necessary):
npx @dennisk2025/text-palindrome-checkerOr, to install it globally:
npm install -g @dennisk2025/text-palindrome-checkerAdding to Claude Desktop
To use this MCP server with Claude Desktop, add the following configuration to your claude_desktop_config.json file:
{
"mcpServers": {
"text-palindrome": {
"command": "npx",
"args": ["@dennisk2025/text-palindrome-checker"]
}
}
}Add this to your Claude Desktop config file at:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Usage
Once added, Claude Desktop will detect the server and you can invoke its tools.
Available Tools
is_palindrome
- Description: Determines whether the supplied text is a palindrome, returning true or false.
- Parameters:
text(string, required): The text to be checked for palindrome properties.
Example Tool Call
Input:
{
"tool": "is_palindrome",
"parameters": {
"text": "A man, a plan, a canal: Panama"
}
}Output:
{
"result": true
}Input (not a palindrome):
{
"tool": "is_palindrome",
"parameters": {
"text": "Hello, world!"
}
}Output:
{
"result": false
}License
MIT License
