MCP Character Tools
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| count_letterA | Count occurrences of a specific letter in text. Returns the count, positions, a visual breakdown showing where each letter appears, and a density percentage. Args:
Returns: count, positions array, visual breakdown, and density summary. Example: count_letter("strawberry", "r") → count: 3, positions: [2, 5, 8] |
| count_lettersA | Count occurrences of multiple letters at once. Efficiently counts several letters in a single call. Args:
Returns: Results for each letter with counts and positions. Example: count_letters("strawberry", ["r", "s", "e"]) → r: 3, s: 1, e: 1 |
| count_substringA | Count occurrences of a substring or pattern in text. Can count overlapping or non-overlapping matches. Args:
Returns: count and positions of each match. Example: count_substring("banana", "ana", overlapping=true) → count: 2, positions: [1, 3] |
| letter_frequencyA | Get frequency distribution of all characters in text. Provides a complete breakdown of character frequencies. Args:
Returns: Frequency map, sorted list, most/least common characters. Example: letter_frequency("hello") → h: 1, e: 1, l: 2, o: 1 |
| spell_wordA | Break text into individual characters with optional indices. Perfect for verifying character-by-character content. Args:
Returns: Array of characters, indexed list, spelled out string. Example: spell_word("cat") → ['c', 'a', 't'] with indices [0:'c', 1:'a', 2:'t'] |
| char_atA | Get the character at a specific index (0-based). Supports negative indices. Args:
Returns: The character at that position, or error if out of bounds. Example: char_at("hello", 1) → 'e'; char_at("hello", -1) → 'o' |
| nth_characterA | Get the nth character (1-based, human-friendly numbering). "What's the 3rd letter?" uses position=3. Args:
Returns: The character and a human-readable description. Example: nth_character("hello", 2) → 'e' (the 2nd character) |
| word_lengthA | Get the exact length of text with detailed breakdown. Args:
Returns: Total length, length without spaces, space count, word count. Example: word_length("hello world") → 11 total, 10 without spaces, 2 words |
| reverse_textA | Reverse text character-by-character or word-by-word. Also detects if the text is a palindrome. Args:
Returns: Reversed text, palindrome detection. Example: reverse_text("hello") → "olleh"; reverse_text("racecar") → "racecar" (palindrome!) |
| compare_textsA | Compare letter frequencies between two texts. Useful for analyzing similarity or differences. Args:
Returns: Common characters, unique to each, frequency comparison, similarity score. Example: compare_texts("hello", "world") → common: ['l', 'o'], unique_to_text1: ['h', 'e'], etc. |
| analyze_sentenceA | Analyze a sentence word-by-word for a specific letter. Shows exactly how many times a letter appears in each word. Args:
Returns: Per-word breakdown with counts and positions. Example: analyze_sentence("The strawberry was very ripe", "r") → per-word counts |
| batch_countA | Count a letter across multiple words at once. Efficiently process a list of words. Args:
Returns: Results for each word, totals, sorted by count. Example: batch_count(["strawberry", "raspberry", "blueberry"], "r") → individual and total counts |
| get_tricky_wordsA | Get a list of words that are commonly miscounted by LLMs. These are words with double letters, repeated patterns, or other features that cause counting errors. Returns: List of tricky words with correct counts and explanations. Example: Returns "strawberry" with explanation that it has 3 r's, not 2. |
| check_tricky_wordA | Look up a specific word to see if it's a commonly miscounted word. Args:
Returns: Information about common mistakes if it's a tricky word, or empty if not. Example: check_tricky_word("strawberry") → explains the 3 r's and common mistake of counting 2 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Aaryan-Kapoor/mcp-character-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server