Skip to main content
Glama

Server Details

Consent-based human matchmaking for peer advice, collaboration, and practical help.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsC

Average 3.1/5 across 6 of 6 tools scored. Lowest: 2.4/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: profile retrieval, match request listing, chat message listing, match request creation, message sending, and chat initiation. No overlaps exist.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (get_current_user, list_match_requests, etc.). The naming is predictable and coherent.

Tool Count5/5

6 tools is within the ideal 3-15 range. Each tool covers a necessary aspect of the LMGram service without redundancy.

Completeness4/5

Core operations are covered: user profile, match requests (list/request), and chat (list messages/send/start). Missing are reject/delete match requests, but the set is still functional for basic workflows.

Available Tools

6 tools
get_current_userGet current LMGram profileA
Read-onlyIdempotent
Inspect

Returns the LMGram profile linked to the connected account.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description does not need to repeat these. The description adds the context 'linked to the connected account', which is helpful but does not disclose further behavioral traits (e.g., no mention of authentication requirements or rate limits).

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, concise sentence with no wasted words. It is front-loaded and clearly communicates the tool's purpose.

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?

The tool has no output schema, and the description does not mention return value contents (e.g., fields like name, email, id). For a simple profile retrieval, this may be sufficient, but the description could be slightly richer to prepare the agent for the response structure.

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?

There are no parameters, and schema description coverage is 100% (trivially). The description does not need to add parameter semantics. Baseline 4 is appropriate as the schema already fully covers the absence of parameters.

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 'Returns the LMGram profile linked to the connected account' clearly states the verb (returns) and resource (LMGram profile). The tool is distinct from siblings which deal with matching, messages, and chat, leaving no 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 implies use when the connected account's profile is needed. No explicit exclusions or alternatives are given, but the context of siblings (list_match_requests, etc.) makes usage clear. A perfect score would require explicit when-to-use or when-not-to-use guidance.

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

list_match_requestsList LMGram match requestsA
Read-onlyIdempotent
Inspect

Lists recent match requests for the current LMGram user.

ParametersJSON Schema
NameRequiredDescriptionDefault
roleNocandidate
limitNo
Behavior3/5

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

Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which convey safety and idempotency. The description simply restates the action without adding behavioral details like pagination, authorization, or what 'recent' means, so it adds little value beyond 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 a single, clear sentence that immediately conveys the purpose. No unnecessary words or redundancy.

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?

The description is adequate for a simple list tool given the annotations, but it lacks explanation of return format, parameter semantics, and filtering criteria (e.g., what 'recent' means). For a tool with no output schema, more detail would be helpful.

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

Parameters2/5

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

The input schema has two parameters (role and limit) with enums and defaults, but the description does not explain them at all. With 0% schema description coverage, the description fails to clarify the meaning of 'candidate' vs 'requester' or the effect of 'limit'. This is a significant gap.

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 specifies the action 'list', the resource 'match requests', and the scope 'for the current LMGram user'. It distinguishes from sibling tools like 'request_human_match' and 'get_current_user'.

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 implies usage for viewing match requests, which is minimally adequate. However, it provides no explicit guidance on when to use this tool versus alternatives like 'request_human_match', nor does it mention any prerequisites or exclusions.

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

list_messagesList chat messagesC
Read-onlyIdempotent
Inspect

Lists messages in a LMGram chat.

ParametersJSON Schema
NameRequiredDescriptionDefault
chatIdYes
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint. Description adds no additional behavioral details such as pagination, ordering, or error handling.

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

Conciseness3/5

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

Single sentence, concise but too brief for adequate information. Could be expanded without losing conciseness.

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?

With only one parameter and no output schema, description should clarify what messages are returned (e.g., all, recent) and any constraints like chat ownership. Lacks completeness.

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

Parameters1/5

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

Schema coverage is 0% and description provides no information about the chatId parameter (format, required, typical values).

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 verb 'list' and resource 'messages' with context 'in a LMGram chat'. It distinguishes from siblings like get_current_user and send_message.

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 on when to use this tool versus alternatives, no prerequisites (e.g., must be chat member), and no context for typical use cases.

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

request_human_matchRequest a human matchCInspect

Creates an opt-in LMGram human match request from a minimized session summary.

ParametersJSON Schema
NameRequiredDescriptionDefault
needYesThe concrete human connection the user wants.
topicYesShort title for the current session topic.
summaryYesMinimized summary. Do not send raw transcripts, secrets or private documents.
urgencyNo
languageNo
matchTypeNopeer
sensitivityNonormal
maxCandidatesNo
Behavior2/5

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

Annotations indicate readOnlyHint=false (write operation) and destructiveHint=false, but the description adds only 'opt-in' and does not disclose key behavioral traits such as whether requests are queued, if notifications are sent, or if the session is modified. The description relies on annotations without adding significant context.

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

Conciseness3/5

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

The description is a single sentence with no wasted words, but it is too terse to convey necessary detail. It could benefit from structure such as bullet points or examples to improve readability without increasing length significantly.

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?

With 8 parameters, no output schema, and minimal annotations, the description is incomplete. It does not explain the matching process, prerequisites (like user authentication), or what the response contains (e.g., request ID, status). The tool's complexity demands more comprehensive documentation.

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

Parameters2/5

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

Although the schema provides descriptions for the three required parameters (topic, summary, need), the tool description itself does not add any parameter-specific meaning. Five optional parameters (urgency, language, matchType, sensitivity, maxCandidates) have no descriptions in the schema or the tool description, leaving their semantics unclear. The tool description fails to compensate for the low schema coverage of 38%.

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 uses a specific verb ('Creates') and resource ('human match request'), and mentions the input context ('minimized session summary'). However, it does not differentiate from sibling tools like list_match_requests or start_chat, which could also involve creating requests or initiating matches.

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_match_requests (to list existing requests) and start_chat (to start a chat directly), the description should indicate scenarios that require this tool over others, but it does not.

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

send_messageSend a chat messageCInspect

Sends a message into a LMGram chat.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyYes
chatIdYes
Behavior2/5

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

Annotations already indicate mutation (readOnlyHint=false) and non-destructiveness. The description adds no further behavioral context, such as side effects, authorization needs, or rate limits.

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, concise sentence that is front-loaded with the key action. No redundant words or unnecessary detail.

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 tool's simplicity and lack of output schema, the description is too sparse. It omits parameter explanations and any context about message limits, formatting, or expected behavior.

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

Parameters1/5

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

The input schema has 0% description coverage, and the description does not explain the purpose or format of chatId or body. The agent receives no guidance on parameter values.

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 'Sends a message into a LMGram chat,' specifying the action (sends) and the resource (message into a chat). It effectively distinguishes from sibling tools like list_messages and start_chat.

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. It does not mention prerequisites, exclusions, or context for invocation.

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

start_chatStart or request a chatCInspect

Starts a LMGram chat for a match request, or records that this side wants to chat.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyNoOptional first message.
matchRequestIdYes
Behavior3/5

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

Annotations indicate the tool modifies state (readOnlyHint=false) and is non-idempotent, but the description adds minimal behavioral context beyond 'starts a chat'. It does not describe side effects, state requirements, or error conditions. Acceptable given annotations, but could be more informative.

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?

Single sentence is concise and front-loaded. However, the phrase 'or records that this side wants to chat' is somewhat redundant and could be split for clarity. Still, no wasted words.

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 absence of an output schema, the description should clarify what the tool returns or what side effects occur (e.g., whether a chat is created immediately or a request is queued). The ambiguity about 'records' versus 'starts' leaves the behavior unclear for an agent.

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

Parameters2/5

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

Schema coverage is 50% with only 'body' described. The tool description adds no information about parameters, especially the required 'matchRequestId', leaving its purpose ambiguous. The description should clarify what a match request ID represents and how to obtain it.

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 it starts a chat for a match request, which distinguishes it from sibling tools like 'send_message' or 'list_messages'. However, the addition 'or records that this side wants to chat' introduces slight ambiguity about whether it always creates a chat or just logs intent.

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 'send_message' or 'request_human_match'. The context of being for a match request is implied, but without exclusion criteria or prerequisites.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    B
    maintenance
    Enables private, AI-driven matching of needs and offers (e.g., cofounders, jobs, roommates) without public listings. Intents are matched by AI and revealed only to both sides when a real fit is found.
    3
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Your AI finds the right people for you. Agent-to-agent networking via MCP. Publish what you need, match against other agents, both humans approve before connecting. Ed25519 signed, hosted API.
    7
    88
    4
    Apache 2.0
  • F
    license
    -
    quality
    C
    maintenance
    Enables AI assistants to network on behalf of users, handling profile management, intent-based matching, and secure messaging through the Model Context Protocol.
    8
  • A
    license
    -
    quality
    C
    maintenance
    Connects AI agents to a collective creativity platform where they can publish, read, and explore creative connections (bisociations) between concepts from different domains.
    32
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources