Skip to main content
Glama
tarun101

iMessage MCP

by tarun101

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.2.0

  • Disambiguation3/5

    list_chats and search_messages are distinct, but get_messages and get_recent_messages have potentially confusingly similar purposes—both return recent messages newest first and differ mainly in scope (single conversation vs. all conversations). The descriptions clarify the difference, but an agent could easily pick the wrong one without careful reading.

    Naming Consistency5/5

    All four tools consistently follow a clear snake_case verb_noun pattern (list_chats, get_messages, get_recent_messages, search_messages). The verbs are distinct and descriptive, with no mixing of conventions or styles.

    Tool Count5/5

    Four tools is well-scoped for a read-only iMessage server: one for chat discovery, two for message retrieval (per-chat and global), and one for search. Each tool earns its place with no bloat.

    Completeness2/5

    The read surface is decent, but the server is called iMessage and list_chats explicitly references a send_to_chat tool that is absent, leaving a significant dead end for agents wanting to send messages. Search also admits to missing newer attributedBody messages, so coverage feels incomplete.

  • Average 4.5/5 across 4 of 4 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 2 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Annotations already declare readOnlyHint=true and destructiveHint=false, so safety profile is provided. The description adds the cap on limit (200), offering one behavioral constraint, but does not elaborate on ordering or pagination. Barring annotations, this is sufficient but minimal.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Two sentences convey purpose, return details, usage hint, and a limit constraint with no wasted words. The information is front-loaded and efficiently delivered.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool is simple (one optional param, read-only) and an output schema exists, so the description doesn't need to detail return formatting. It covers the key workflow (list chats -> get messages) and limit cap, making it sufficiently complete for the low complexity.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema provides only the integer type and default for limit, with 0% coverage. The description compensates by noting the cap at 200, giving practical meaning beyond the schema. However, it doesn't explain the exact effect of varying limit, but this is largely evident.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool 'List the most recently active conversations' with a specific verb and resource. It also specifies return content (identifier, display name, last message time), distinguishing it from sibling message-retrieval tools.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description mentions using the returned identifiers with get_messages or send_to_chat, which provides follow-up usage context. However, it does not explicitly state when to use this tool versus alternatives like get_recent_messages, and omits any exclusions.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    The annotations (readOnlyHint=true, destructiveHint=false) already signal a safe read operation, and the description adds materially useful behavioral context beyond them: the literal handling of `%` and `_`, the attributedBody gap, and the hard 200-row limit on `limit`. The security advisory about treating message text as data rather than instructions is an exemplary disclosure for an LLM-driven agent. No contradiction with the safe-read annotations.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Five sentences, three short paragraphs, and every clause pulls its weight. Purpose, matching rules, known coverage limitation, limit cap, and a security note — all under 70 words. The structure front-loads the core definition and parcels out caveats in decreasing importance. The final warning about prompt injection is a distinctive, high-value addition.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a read-only search tool with an output schema, this description is thorough: it documents the matching algorithm, data availability, and edge-case limitations, and even warns about hostile content. One minor gap is that it never addresses case-sensitivity or namespace/regex behavior, which could plausibly matter when using a search. But given the presence of annotations and output schema, coverage is strong overall.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    With 0% schema description coverage, the description carries the full burden for parameter documentation. It compensates partially by explaining the `limit` cap and the literal-match semantics of the query string, but it doesn't add much beyond what the parameter names alone suggest for a 2-parameter tool. The value it does add (wildcard literalness, cap) is meaningful, but the semantic depth is still minimal and some behavior (e.g., case sensitivity) remains unspecified.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description opens with a crisp, specific statement: 'Substring search over message bodies.' This clearly establishes verb (search) and resource (message bodies) and distinguishes it from sibling tools like get_messages and get_recent_messages. Subsequent sentences add behavioral specificity (plain text column, literal wildcards) without ambiguity.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides clear contextual guidance about when the tool is effective versus when it falls short ('Some newer messages store their body only in attributedBody and will not be found by this search'), which implicitly tells the agent when to consider alternatives like get_messages. However, it never explicitly names sibling alternatives or says 'use X instead,' so it stops short of a 5.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    Beyond the readOnlyHint annotation, the description adds meaningful behavioral context: results include chat_identifier for attributing self-sent messages, limit is capped at 200, and message text should be treated as untrusted data rather than instructions. This is rich, non-obvious context that helps the agent handle output safely.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is compact and front-loaded: the first sentence states the core purpose, the second adds a critical attribution detail, and the third provides a security-oriented warning. Every sentence earns its place with no repetition of schema or annotation information.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    This is a simple tool with one optional parameter and an output schema, so the description does not need to explain return values. It covers scope, ordering, limit cap, attribution semantics, and untrusted-content handling, making it complete for safe and correct invocation.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    With 0% schema description coverage, the description compensates by clarifying the cap on limit (200). It does not restate the obvious meaning of 'limit' as a count, but the cap is an important addition. Given the parameter is self-explanatory and the default is in the schema, this is adequate.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb ('Get') and clearly identifies the resource ('most recent messages across all conversations') plus ordering ('newest first'). It distinguishes itself from sibling tools by emphasizing the cross-conversation scope, which differs from likely per-chat retrieval or search.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description clearly conveys when to use this tool: when you need recent messages across all conversations, and it notes the chat_identifier attribution caveat. It does not explicitly name alternatives like get_messages for a specific chat, but the cross-conversation phrasing provides clear context and implies the exclusion.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    The description adds significant behavioral detail beyond the annotations: it states tapbacks are excluded, limit is capped at 200, and includes a security note about treating message text as untrusted data. These are not implied by readOnlyHint or destructiveHint, so the description fully carries the burden of behavioral disclosure.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is structured in three tight paragraphs: purpose, parameter details, and a security reminder. Every sentence earns its place—no fluff, no repetition, and the most important info (purpose) is front-loaded.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's simplicity (2 params, output schema present), the description is remarkably complete. It covers parameter formats, ordering, exclusions, limits, and even a security consideration. Nothing critical is missing for an agent to use it correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    With 0% schema description coverage, the description fully compensates by explaining the exact accepted formats for 'chat' (phone/email or guid) and the pragmatic limit of 'limit' (capped at 200). It clarifies both parameters in a way the schema alone does not, adding real semantic value.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states 'Get recent messages from a conversation'—a specific verb+resource. It further specifies the chat parameter types (chat_identifier or chat guid), ordering (newest first), and exclusions (tapbacks), which fully conveys the tool's scope and differentiates it from siblings like list_chats and search_messages.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives a clear usage context—how to specify the chat (phone/email for 1:1, chat guid for groups) and notes that guid comes from list_chats. However, it does not explicitly state when to choose this tool over get_recent_messages or search_messages, missing the 'when not to use' guidance present in higher-scoring examples.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

imessage-mcp MCP server

Copy to your README.md:

Score Badge

imessage-mcp MCP server

Copy to your README.md:

Latest Blog Posts

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/tarun101/imessage-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server