Skip to main content
Glama
MilosJova

serve7-mcp-connectors

by MilosJova

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool targets a clearly distinct resource and action: customer lookup, ticket creation/status, appointment scheduling, CRM patching, knowledge search, and task creation. There is no meaningful overlap or ambiguity between tool purposes.

    Naming Consistency4/5

    Most tools follow the verb_noun pattern (create_support_ticket, retrieve_status, schedule_appointment, update_crm_record, retrieve_knowledge, create_task). The exception is customer_lookup, which reverses the order to noun_verb, creating a minor consistency deviation.

    Tool Count5/5

    Seven tools is a well-scoped size for a customer support/CRM connector. Each tool covers a distinct workflow step, and none feel redundant or unnecessary.

    Completeness3/5

    The surface covers customer lookup, ticket creation and status, knowledge retrieval, and follow-up tasks, but ticket lifecycle is incomplete (no update or close) and appointment management lacks cancellation/rescheduling. These are notable gaps for a full customer support workflow.

  • Average 3.8/5 across 7 of 7 tools scored. Lowest: 3.2/5.

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

    • No community issues in the last 6 months
    • 3 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
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • 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

  • Behavior2/5

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

    There are no annotations, so the description itself carries the burden of explaining behavior. It only states the intent to book an appointment; it does not disclose side effects, validation requirements, conflict handling, persistence, or any other observable behavior beyond 'book'.

    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?

    A single well-structured sentence includes the action, allowed appointment categories, and the target audience. Every part adds useful information and there is no filler.

    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 product with no annotations and no output schema, the description is too thin. It leaves out expected results, potential failure modes, scheduling availability, and how duration interacts with the selected service type.

    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 coverage is 75%, so the schema handles most parameters. The description adds some semantic value by clarifying that the customer must already exist and by enumerating serviceType examples that match the schema's guidances.

    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 ('Book') and resource ('appointment'), names concrete appointment types, and scopes to existing customers. This clearly distinguishes it from sibling tools like create_support_ticket and create_task.

    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 given about when to use this tool versus alternatives. It does not mention when to choose a support ticket, how to validate an existing customer first, or any conditions that would rule out this tool.

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

  • Behavior2/5

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

    There are no annotations, so the description must carry the behavioral burden, but it only describes intent, not observable behavior. It does not mention side effects such as whether the task is immediately visible, if assignees are notified, whether tasks can be updated later, or what permissions are required.

    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, well-structured sentence with no filler. It front-loads the action and purpose, and the example clarifies when this tool should be used.

    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?

    The description gives a solid scenario but remains thin for actual invocation: half the parameters are undocumented, there is no output-schema guidance, no sibling differentiation, and no mention of side effects or lifecycle behavior. For a mutation tool with zero annotations, this is below what an agent needs to confidently use it correctly.

    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 description coverage is only 50%, covering dueDate and assignee, while the required 'title' and 'description' fields are undocumented. The description's example suggests possible task content but does not map the example to specific parameter values or explain how they should be composed.

    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 names the action ('Create a follow-up task') and the resource ('a human teammate'), and grounds it with a concrete example about calling a customer back. It reads as distinct from the sibling create_support_ticket, since this is explicitly about assigning manual follow-up to a person after automation.

    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 when-to-use condition: use it when something needs manual handling after the AI-driven part of the interaction ends. It does not explicitly say when not to use it or name alternative sibling tools, but the intended context is reasonably evident.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden of behavioral disclosure. The wording 'File a new support ticket' indicates a mutation action, but does not mention side effects, auth requirements, idempotency, or what the returned response looks like. The statement about using retrieve_status afterward adds a little context about lifecycle, but falls short of explaining the immediate behavior of this call.

    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 with no verbosity: the first states the action and trigger, the second gives a useful next-step hint. Information is front-loaded—the action is in the first word—and every sentence earns its place.

    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 gives the trigger condition and a follow-up instruction, but no output schema exists to state the returned ticket ID or other result fields. Since the agent will need an identifier to call retrieve_status afterward, this gap is not entirely covered. Still, the essential context for the creation decision is present.

    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 already describes all 4 parameters with high coverage, so the baseline is 3. The description doesn't add any new details about just for those fields; it only paraphrases the concept of a support ticket. It correctly fits the semantic framing of 'customer', but the schema still holds the detailed meaning.

    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 names a specific verb and resource—'File a new support ticket'—and scopes it to the concrete case 'when their issue can't be resolved in the current interaction'. It also distinguishes the action from checking an existing ticket by referring to retrieve_status, so the tool's identity is easy to grasp and separate from its most natural sibling.

    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?

    It clearly states a condition for calling this tool: only when the issue can't be resolved in the current interaction. The second sentence implies that already-created tickets should be handled via retrieve_status rather than creating another one, giving the agent a basic decision rule. However, it does not compare against other siblings like create_task or schedule_appointment, leaving some nuance unspecified.

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

  • Behavior3/5

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

    With no annotations, the description must reveal behavioral traits. 'Look up' and 'returns' imply a read-only, non-mutating operation, and the mention of returned fields gives some transparency. However, it does not address what happens when no customer is found, how the tool behaves when multiple identifiers are provided, or whether any authorization is needed.

    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 very concise: two sentences, a clear, simple lookup action, and a usage note. All sentences are used to fill a purpose-oriented or behavioral gap, with no fluff.

    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?

    Given the simple tool shape (had 3 params, no output schema), the description is a very complete level: names the keys, provides return values, and positions itself as the first step for a typical flow. You may still be missing the empty-result/one-of-three requirement, but that is an edge condition that is not normally needed to drive a first lookup.

    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% and each field already has a clear description, so the baseline is appropriate. The text adds the concept of three comparable lookup keys, but it does not specify that at least one key is needed or what happens with conflicting/multiple inputs. The description adds meaningful context, but does not exceed the baseline.

    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 states a specific verb ('look up'), a clear resource ('customer record'), and the exact lookup keys (customer ID, email, phone). It also previews the returned data (account status and tier), making the tool's purpose distinct from the sibling tools at a glance.

    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?

    It provides clear ordering guidance: 'Call this first in the context of nearly every flow,' which is an explicit usage directive. But it does not enumerate exclusions or explicitly reference an alternative tool, so the contrast with siblings (e.g., retrieve_status, update_crm_record) is left slightly to inference.

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

  • Behavior3/5

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

    No annotations are provided, so the description must carry this burden. It implies an read-only operation with 'Check' and gives examples of possible statuses, but it doesn't disclose error handling, permissions, or whether status updates propagate elsewhere. This is adequate for a simple retrieval but not rich.

    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, each with a distinct purpose: the first states the action, the second maps it to a real-world usage context. No padding or redundancy.

    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 single-parameter, no-output-schema, no-annotation tool, the description sufficiently covers purpose, input, and use context. It doesn't list all possible statuses, but an agent can infer the general return shape. This is complete enough for the tool's simplicity.

    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%, with ticketId already described as 'Ticket ID returned by create_support_ticket, e.g. tkt-5001.' The description adds no further detail about the parameter, so baseline 3 is appropriate.

    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 a unique verb-resource pair: 'Check the current status of a previously created support ticket by its ticket ID.' This distinguishes it from siblings such as create_support_ticket, customer_lookup, and retrieve_knowledge through its object and action.

    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 an explicit when-to-use scenario: 'Use this before telling a customer their issue is still in progress vs. resolved.' However, it doesn't name alternatives or exclusions, so the guidance isn't as complete as it could be.

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

  • Behavior3/5

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

    With no annotations, the description carries the behavioral disclosure burden. It effectively communicates partial/full patch semantics: 'Patch fields' and 'Only include the fields you want changed.' However, it omits side effects, authorization requirements, and behavior when invalid fields or unknown customer IDs are provided.

    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 with no filler. The core purpose is front-loaded, the example is useful, and the 'only include fields you want changed' instruction earns its place.

    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 simple patch tool with one required parameter and no nested objects, the description covers the main usage context and partial update behavior. Missing output/return info and permission notes are minor given the simplicity, but a small note on failure behavior would make it fully complete for agents.

    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 coverage is only 20% (only customerId has a description), so the description must compensate. It names phone and email as example fields to update, but does not clarify the meaning of tier or accountStatus. The enums help partially, but a richer explanation of non-obvious parameters would have been beneficial.

    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?

    Description uses a specific verb ('Patch') and resource ('existing customer's CRM record'), clearly distinguishing it from sibling tools like create_support_ticket or customer_lookup. It communicates the intended operation and the record being modified 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?

    Provides a concrete use case ('after verifying a new phone number or email during a call') and instructs to include only changed fields. It does not explicitly mention when not to use the tool, but the context and sibling tool names make the boundary reasonably clear.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the behavioral disclosure burden. It makes clear this is a read-only search that returns top matches with relevance scores and URLs, so the agent understands its output and non-destructive nature. It does not go into details like empty-result behavior or ranking beyond 'top matches'.

    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 only two sentences and front-loads the core action before the output and use intent. Every sentence contributes meaningful information and there is no redundant filler.

    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 two-parameter retrieval tool with no output schema, the description covers the core use case, the result format, and the purpose. It is slightly incomplete only in that it does not explicitly explain relevance cutoff, sorting, or tell the agent to prefer it over sibling lookup tools.

    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 input schema already explains that 'query' is the natural-language search and 'topK' is the maximum result count. The description does not add further parameter-level guidance, so it stays at the baseline.

    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?

    Description uses a specific verb and resource: 'Search the knowledge base for articles'. It also states what the tool returns, including relevance score and source URL, making it clearly distinct from sibling tools like customer_lookup or create_support_ticket.

    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 clear context for use: it is for answering a customer's question with grounded, citable knowledge articles. It does not explicitly mention sibling alternatives or when not to use the tool, so it misses the strict when-not guidance needed for a 5.

    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

serve7-mcp-connectors MCP server

Copy to your README.md:

Score Badge

serve7-mcp-connectors 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/MilosJova/serve7-mcp-connectors'

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