Skip to main content
Glama

Claude IPC MCP - Let Your AI Agents Talk to Each Other

Version GitHub stars License

Enable AI-to-AI communication using simple natural language commands. Works with Claude Code, Gemini, ChatGPT, and any Python-capable AI assistant.

What It Does

Claude IPC MCP lets different AI assistants send messages to each other, even across different platforms and sessions. Think of it as email for AIs - simple, reliable, and persistent.

# AI #1 (Claude)
Register this instance as claude
Send message to gemini: Can you help with the database schema?

# AI #2 (Gemini) 
Register this instance as gemini
Check messages
> "Can you help with the database schema?" - from claude

Related MCP server: Command Executor MCP Server

Quick Install (2 minutes)

# 1. Clone the repo
git clone https://github.com/jdez427/claude-ipc-mcp.git
cd claude-ipc-mcp

# 2. Install UV package manager
curl -LsSf https://astral.sh/uv/install.sh | sh

# 3. Install dependencies
uv sync

# 4. For Claude Code: Run installer
./scripts/install-mcp.sh

# 5. Restart Claude Code and test
# Type: Register this instance as myname

Full installation guide: INSTALL.md

Key Features

  • 💬 Natural language commands - No coding required

  • 💾 Persistent messages - Messages survive restarts

  • 🔄 Cross-platform - Works between different AI platforms

  • 🎯 Simple setup - Install once, use everywhere

  • 🔐 Optional security - Add authentication if needed

Basic Commands

Register this instance as alice     # Set your name
Send message to bob: Hello!         # Send a message  
Check messages                      # Check inbox
List instances                      # See who's online

Documentation

Requirements

  • Python 3.12+ (check with python3 --version or python --version)

  • Any AI assistant with Python execution capability

Support

Having issues? Open a GitHub issue

License

MIT - Use freely in your projects


"Can't spell EMAIL without AI!" 📧

Available Tools

9 tools
auto_processC

Automatically check and process IPC messages (for use with auto-check feature)

ParametersJSON Schema
NameRequiredDescriptionDefault
instance_idYesYour instance ID

TDQS

C2.6/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden but offers minimal behavioral disclosure. It mentions 'automatically' and 'process' but doesn't explain what processing entails, whether it's destructive, what permissions are needed, or what happens to messages. The description is insufficient for a mutation tool with zero annotation coverage.

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

Conciseness4/5

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

The description is appropriately brief with two concise phrases, though the parenthetical feels slightly tacked on. Every element serves a purpose, and there's no wasted verbiage.

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

Completeness2/5

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

For a tool that appears to perform automated message processing (implied mutation) with no annotations and no output schema, the description is inadequate. It doesn't explain what 'process' means, what happens to messages, what the tool returns, or any error conditions.

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?

Schema description coverage is 100% (the single parameter 'instance_id' is documented as 'Your instance ID'), so the baseline is 3. The description adds no additional parameter information beyond what the schema already provides.

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

Purpose3/5

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

The description states the tool 'Automatically check and process IPC messages' which provides a basic verb+resource combination, but it's vague about what 'process' entails and doesn't distinguish from siblings like 'check' or 'send'. The parenthetical 'for use with auto-check feature' adds some context but doesn't clarify the core purpose.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus alternatives like 'check' or 'send'. The parenthetical mention of 'auto-check feature' implies a specific context but doesn't define when this tool is appropriate versus manual checking/processing tools.

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

broadcastC

Broadcast a message to all other Claude instances

ParametersJSON Schema
NameRequiredDescriptionDefault
from_idYesYour instance ID
contentYesMessage content
dataNoOptional structured data

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action but lacks critical details: whether this requires authentication, how messages are delivered (reliability, latency), if there are rate limits, whether it's idempotent, or what happens on failure. 'Broadcast' implies a write operation affecting multiple instances, but no safety or side-effect information is given.

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 a single, clear sentence with zero wasted words. It's front-loaded with the core action and target, making it immediately scannable and efficient. Every word earns its place by conveying essential purpose without redundancy.

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

Completeness2/5

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

For a tool with no annotations, no output schema, and a mutating action ('broadcast'), the description is incomplete. It doesn't explain what 'broadcast' entails operationally, what the response looks like, error conditions, or how it differs from siblings like 'send'. The agent lacks sufficient context to use this tool safely and effectively.

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?

Schema description coverage is 100%, so the schema fully documents all three parameters (from_id, content, data). The description adds no additional parameter semantics beyond implying 'content' is the broadcast message. This meets the baseline for high schema coverage but doesn't enhance understanding of parameter usage or constraints.

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

Purpose4/5

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

The description clearly states the action ('broadcast') and target ('to all other Claude instances'), making the purpose immediately understandable. It distinguishes this from point-to-point communication tools like 'send' in the sibling list. However, it doesn't specify what 'broadcast' entails technically (e.g., pub/sub, direct messaging).

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

Usage Guidelines2/5

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

No guidance is provided about when to use this tool versus alternatives like 'send' (point-to-point) or 'share_command' (command sharing). The description implies a broadcast scope but doesn't clarify use cases, prerequisites, or exclusions. The agent must infer usage from the name alone.

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

checkC

Check for new messages

ParametersJSON Schema
NameRequiredDescriptionDefault
instance_idYesYour instance ID

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal insight. It mentions checking for 'new messages' but doesn't specify whether this is a read-only operation, how it interacts with the system (e.g., polling frequency, side effects), or what authentication or rate limits apply. The description fails to compensate for the lack of 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?

The description is extremely concise at just three words, with no wasted language. It is front-loaded with the core action ('Check'), making it easy to parse. Every word earns its place, though this conciseness comes at the cost of detail in other dimensions.

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

Completeness2/5

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

For a tool with no annotations, no output schema, and a single but critical parameter, the description is insufficient. It doesn't explain what 'new messages' means in context, what the tool returns, or how it differs from other message-related operations. The lack of behavioral and output information leaves significant gaps for an agent to understand and use the tool effectively.

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?

The input schema has 100% description coverage, with the single parameter 'instance_id' clearly documented as 'Your instance ID'. The description adds no additional meaning beyond what the schema provides, such as explaining how the instance ID relates to message checking. Given the high schema coverage, the baseline score of 3 is appropriate.

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

Purpose2/5

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

The description 'Check for new messages' states a general action but lacks specificity about what resource is being checked. It doesn't distinguish this tool from potential siblings like 'list_instances' or 'auto_process' that might also involve message handling. The description is vague about scope and target, falling short of the clarity needed for effective tool selection.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. With siblings like 'list_instances', 'send', and 'auto_process', the description offers no context about whether this is for polling, notification checking, or status updates. The agent receives no help in determining the appropriate scenario for invoking this tool.

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

list_instancesB

List all active Claude instances

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. While 'List' implies a read operation, it doesn't specify whether this requires authentication, what 'active' means operationally, if there are rate limits, or what format the output takes. The description is minimal and lacks important behavioral context.

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 a single, efficient sentence that states exactly what the tool does with zero wasted words. It's appropriately sized for a simple listing tool and front-loads the core functionality.

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

Completeness3/5

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

For a zero-parameter listing tool with no output schema, the description is minimally adequate but lacks important context. It doesn't explain what constitutes an 'active' instance, whether the list is filtered or complete, or what information is returned about each instance. The absence of annotations means more behavioral detail would be helpful.

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 parameters and 100% schema description coverage, the baseline is 4. The description appropriately doesn't discuss parameters since none exist, and the schema already fully documents the empty parameter set.

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

Purpose4/5

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

The description clearly states the verb ('List') and resource ('all active Claude instances'), providing a specific purpose. However, it doesn't differentiate from sibling tools like 'check' or 'auto_process' that might also involve instance operations, so it doesn't fully distinguish from alternatives.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'check' or 'register'. It doesn't mention prerequisites, exclusions, or appropriate contexts for listing instances versus other instance-related operations.

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

registerC

Register this Claude instance with the IPC system

ParametersJSON Schema
NameRequiredDescriptionDefault
instance_idYesUnique identifier for this instance (e.g., 'wsl1', 'wsl2')

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'register' which implies a write/mutation operation, but doesn't specify whether this is idempotent, requires specific permissions, has side effects, or what happens on success/failure. This leaves significant gaps for a tool that likely modifies system state.

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 a single, clear sentence that states the tool's purpose without unnecessary words. It's appropriately sized for a simple registration tool and front-loads the essential information efficiently.

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

Completeness2/5

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

For a mutation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what registration entails, what the expected outcome is, or any behavioral characteristics. Given the complexity of system registration and lack of structured data, more context is needed for the agent to use this effectively.

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?

Schema description coverage is 100%, so the schema already documents the single parameter 'instance_id' with its description. The tool description adds no additional parameter information beyond what's in the schema, meeting the baseline for high schema coverage but not providing extra value.

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

Purpose4/5

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

The description clearly states the action ('register') and the target ('this Claude instance with the IPC system'), making the purpose understandable. It doesn't explicitly differentiate from siblings like 'list_instances' or 'rename', but the verb 'register' implies a distinct initialization action rather than listing or modifying.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'list_instances' or 'check', nor does it mention prerequisites or context for registration. It states what the tool does but offers no usage context, leaving the agent to infer based on tool names alone.

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

renameA

Rename your instance ID (rate limited to once per hour)

ParametersJSON Schema
NameRequiredDescriptionDefault
old_idYesYour current instance ID
new_idYesThe new instance ID you want

TDQS

A3.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively adds context by specifying the rate limit ('once per hour'), which is a crucial behavioral trait not inferable from the input schema. However, it doesn't cover other aspects like permissions needed, whether the rename is reversible, or what happens on success/failure, leaving some gaps.

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 a single, efficient sentence that front-loads the key information ('Rename your instance ID') and adds a critical constraint ('rate limited to once per hour') without any wasted words. Every part of the sentence earns its place, making it highly concise and well-structured.

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

Completeness3/5

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

Given the tool's complexity (a mutation with no annotations and no output schema), the description is partially complete. It covers the core action and a rate limit but lacks details on prerequisites, error handling, or return values. For a tool that modifies an instance ID, more context on permissions or side effects would be beneficial, making it adequate but with clear gaps.

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?

The input schema has 100% description coverage, with clear documentation for 'old_id' and 'new_id'. The description adds no additional meaning beyond what the schema provides, such as format constraints or examples. Given the high schema coverage, a baseline score of 3 is appropriate as the schema does the heavy lifting.

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

Purpose4/5

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

The description clearly states the action ('Rename') and the resource ('your instance ID'), making the purpose immediately understandable. It doesn't explicitly differentiate from sibling tools like 'register' or 'list_instances', but the specificity of renaming an instance ID is sufficient for clarity without being tautological.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'register' (which might create a new instance) or other siblings. It mentions a rate limit, but this is more about behavioral constraints rather than usage context, leaving the agent with no explicit when/when-not instructions.

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

sendC

Send a message to another Claude instance

ParametersJSON Schema
NameRequiredDescriptionDefault
from_idYesYour instance ID
to_idYesTarget instance ID
contentYesMessage content
dataNoOptional structured data to send

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action but doesn't cover critical aspects like whether this is a synchronous or asynchronous operation, error conditions (e.g., if the target instance is unavailable), rate limits, or authentication requirements. This leaves significant gaps for an agent to understand how to use it effectively.

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 a single, efficient sentence that front-loads the core purpose without any wasted words. It's appropriately sized for a tool with a straightforward action, making it easy for an agent to parse quickly.

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

Completeness2/5

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

Given the complexity of inter-instance communication and the lack of annotations and output schema, the description is incomplete. It doesn't address behavioral traits, error handling, or return values, which are crucial for an agent to use this tool correctly in a real-world scenario.

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?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds no additional meaning beyond what the schema provides, such as clarifying the format of 'instance ID' or the nature of 'structured data'. Baseline 3 is appropriate when the schema does the heavy lifting.

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

Purpose4/5

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

The description clearly states the action ('send') and resource ('a message to another Claude instance'), making the purpose immediately understandable. It doesn't differentiate from sibling tools like 'broadcast' or 'share_command', which would require explicit comparison, but it's not vague or tautological.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'broadcast' or 'share_command'. It lacks context about prerequisites, such as whether instances need to be registered or online, and offers no explicit when-not-to-use or alternative recommendations.

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

share_commandC

Execute a command and share output with another instance

ParametersJSON Schema
NameRequiredDescriptionDefault
from_idYesYour instance ID
to_idYesTarget instance ID
commandYesCommand to execute
descriptionNoDescription of what this command does

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool executes a command and shares output, implying potential side effects or permissions needed, but doesn't specify execution context (e.g., local vs. remote), security implications, error handling, or output format. This leaves significant gaps for a tool that likely involves system interactions.

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 a single, efficient sentence that front-loads the core functionality without unnecessary details. Every word earns its place by clearly stating the tool's purpose, making it highly concise and well-structured.

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

Completeness2/5

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

Given the complexity of executing and sharing commands, lack of annotations, and no output schema, the description is incomplete. It doesn't address critical aspects like what 'execute' entails (e.g., shell commands, permissions), how output is shared (e.g., format, size limits), or potential risks, leaving the agent with insufficient context for safe and effective use.

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?

Schema description coverage is 100%, meaning all parameters are documented in the schema itself. The description adds no additional meaning beyond what the schema provides (e.g., it doesn't clarify parameter relationships or usage examples). Baseline 3 is appropriate as the schema handles the heavy lifting, but the description doesn't compensate with extra insights.

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

Purpose4/5

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

The description clearly states the action ('execute a command and share output') and resource ('with another instance'), providing a specific verb+resource combination. However, it doesn't differentiate from sibling tools like 'send' or 'broadcast' which might have overlapping functionality, preventing a perfect score.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'send' or 'broadcast' from the sibling list. It mentions the basic context of sharing with another instance but offers no exclusions, prerequisites, or comparative advice, leaving usage decisions ambiguous.

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

share_fileC

Share file content with another instance

ParametersJSON Schema
NameRequiredDescriptionDefault
from_idYesYour instance ID
to_idYesTarget instance ID
filepathYesPath to file to share
descriptionNoDescription of the file

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions sharing file content but doesn't specify permissions required, whether the operation is read-only or destructive, rate limits, or what happens on success/failure. This leaves significant gaps for a tool that likely involves data transfer between instances.

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 a single, clear sentence with no wasted words. It's appropriately sized and front-loaded, directly stating the tool's purpose without unnecessary elaboration.

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

Completeness2/5

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

For a tool with 4 parameters, no annotations, and no output schema, the description is insufficient. It lacks details on behavioral traits, error handling, and output expectations, making it incomplete for safe and effective use by an AI agent in a multi-instance environment.

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?

Schema description coverage is 100%, so the schema already documents all parameters (from_id, to_id, filepath, description). The description adds no additional meaning beyond what's in the schema, such as format examples or constraints, but the baseline is 3 since the schema provides adequate parameter information.

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

Purpose4/5

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

The description clearly states the action ('share') and resource ('file content'), specifying it's between instances. However, it doesn't distinguish this tool from sibling tools like 'send' or 'broadcast', which might have similar sharing functionality but different scopes or methods.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives like 'send' or 'broadcast'. The description implies a specific context (sharing between instances), but it doesn't clarify prerequisites, exclusions, or comparative use cases with sibling tools.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 9 tool updates
    • First observedauto_process
    • First observedbroadcast
    • First observedcheck
    • First observedlist_instances
    • First observedregister
    • First observedrename
    • First observedsend
    • First observedshare_command
    • First observedshare_file

TDQS

B3.2/5.0
Disambiguation4/5

Most tools have distinct purposes, but 'check' and 'auto_process' could cause some confusion as both relate to message processing. 'check' is for manual checking, while 'auto_process' is for automated checking with processing, but the boundary isn't perfectly clear. Other tools like 'broadcast', 'send', 'list_instances', and 'register' are clearly differentiated.

Naming Consistency4/5

Tool names follow a consistent verb-based pattern (e.g., 'broadcast', 'check', 'list_instances', 'register', 'rename', 'send', 'share_command', 'share_file'), all using lowercase with underscores for multi-word names. The only minor deviation is 'auto_process', which includes a prefix, but overall the naming is highly consistent and readable.

Tool Count5/5

With 9 tools, the count is well-scoped for an IPC system covering instance management, messaging, and file/command sharing. Each tool serves a clear purpose, such as registration, listing, sending messages, and sharing resources, making the set comprehensive without being bloated or sparse.

Completeness5/5

The tool set provides complete coverage for IPC operations: instance management ('register', 'list_instances', 'rename'), messaging ('send', 'broadcast', 'check', 'auto_process'), and resource sharing ('share_command', 'share_file'). There are no obvious gaps, enabling agents to handle the full lifecycle of IPC interactions effectively.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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/jdez427/claude-ipc-mcp'

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