Skip to main content
Glama

Server Details

Agger, multi-quote and management platform for insurance brokers. Connect your account with your Agg

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/agger-mcp
GitHub Stars
0

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 DescriptionsA

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

Server CoherenceB
Disambiguation4/5

Tools are mostly distinct: agger_list_accounts focuses on broker email login, authenticate for token setup, connect for connection status, marketplace for catalog/search/run, report_bug for feedback, show_version for versions, and toolkit_info for state. However, connect and authenticate and agger_list_accounts all touch connection/auth and could overlap for an agent (connect returns connection status and URLs; authenticate logs in; agger_list_accounts validates the active connection).

Naming Consistency2/5

Naming is inconsistent: styles vary from descriptive underscore (agger_list_accounts, report_bug, show_version, toolkit_info) to bare verbs (authenticate, connect) and a generic noun (marketplace). The mixed conventions with no clear verb_noun pattern make it harder to predict tool names.

Tool Count4/5

7 tools is reasonable for a platform-management server covering auth, status, catalog, feedback, and versions. It's slightly thin given the marketplace tool bundles many sub-features (search, describe, invoke, install, etc.) into one tool, but the count itself is appropriate.

Completeness3/5

The surface covers core platform functions (connection, auth, catalog, feedback, versions, state) but missing obvious operations like uninstall/disconnect (only connect exists), manage installs directly (marketplace handles install but not uninstall except via cancel), or user profile management. Some gaps exist, e.g., no explicit logout or token refresh beyond authenticate.

Available Tools

7 tools
agger_list_accountsA
Read-onlyIdempotent
Inspect

Conta Agger conectada: e-mail do corretor. Confirma qual login está ativo. Use para validar a conexão antes das demais operações.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description doesn't need to repeat those. The description adds useful context by stating it confirms which login is active, which is a behavioral trait not fully covered by annotations. No contradictions exist.

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, compact sentence (three short segments) that conveys the essence and usage guidance. Every word adds value; there's no fluff. It is well-structured and front-loaded.

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 that the tool has no parameters and no output schema, the description provides enough context: it names the tool's output (e-mail of the broker) and its usage timing (before other operations). It could be slightly more complete by mentioning the format or that it returns no other data, but it is sufficient for a simple validation tool.

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 tool has zero parameters, so the schema provides no parameter details. The description correctly does not invent parameters; it focuses on what the tool does. Since there are no parameters to explain, and the description clearly indicates the output (the e-mail of the connected account), a baseline of 4 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 states the tool's purpose: it shows the connected Agger account (broker's e-mail) and confirms which login is active. Although the name 'agger_list_accounts' is generic, the description adds specificity about what is listed (the connected account) and distinguishes it from other tools like 'authenticate' and 'connect' by focusing on validation of the active login.

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 explicitly says to use this tool to validate the connection before other operations, providing clear context for when to use it. It doesn't explicitly mention when not to use it or name alternative tools, but the context is reasonably clear given the sibling tools like 'authenticate' and 'connect' which likely handle initial setup.

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

authenticateA
Idempotent
Inspect

MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior3/5

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

Annotations already declare idempotentHint=true and destructiveHint=false, so the safety profile is clear. The description adds that the token is a JWT and that session login expires, but it doesn't disclose what the tool returns or the exact behavior when called with no args vs with a token. It partially compensates but lacks some behavioral detail (e.g., does it validate the token, what is the output). No contradiction.

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, front-loaded with the audience and purpose. Each clause adds value, and the formatting guides the agent on parameter usage. Zero waste.

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 complexity (auth flow) and the minimal schema, the description covers the two usage modes, the token format, and the alternative permanent config. The sibling list shows no overlap, so no additional context is needed. Complete for an agent to invoke correctly.

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 0% since the description explains the token parameter's format (JWT) and its optionality, but the schema provides no description. The description adds meaning beyond the schema by detailing the two call patterns, which is helpful. It earns a solid 3 because it compensates for the schema deficit.

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 this tool authenticates an IDE agent by logging in via browser and obtaining an access token. It distinguishes itself from siblings by explicitly targeting IDE agents and explaining the two login flows (permanent config vs session-only).

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

Usage Guidelines5/5

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

The description provides explicit when-to-use guidance: it tells the agent to guide the user to log in, offers two methods (config header permanent, or paste token session), and specifies calling with no args to get the link. It also mentions sibling tools like report_bug and show_version are unrelated to auth workflows.

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

connectA
Read-onlyIdempotent
Inspect

Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already establish readOnly, idempotent, and non-destructive behavior. The description adds useful conditional behavior: when all providers are connected it returns authenticated true and empty pending[], while missing credentials cause it to return a connect_url and per-install URLs. This is meaningful beyond the annotation fields.

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 two sentences long, front-loads the core purpose ('Returns connection status and URLs'), then provides necessary conditional detail. Every sentence adds value and there is no redundant or filler content.

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?

For a zero-parameter, read-only status tool with no output schema, the description covers the main expected behaviors: connected state, missing-credential state, and the useful URLs returned in each case. It is sufficiently complete for an agent to understand what the tool will do and what it will receive.

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 tool has zero parameters, so there is no parameter documentation burden on the description. The baseline for zero-parameter tools is 4, and the description appropriately focuses on output and conditions instead.

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 starts with a specific verb and resource: 'Returns connection status and URLs.' It also clearly distinguishes itself from connection-establishing siblings like authenticate by indicating this is an inspection/read-only tool rather than a credential setup tool.

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 explains how the output changes depending on connection state, which implies the right time to call it (when checking current connection status or when credentials may be missing). However, it does not explicitly name alternatives or state when not to use connect versus authenticate or toolkit_info, so usage direction remains inferred rather than explicit.

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

marketplaceAInspect

The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior5/5

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

Adds substantial behavior beyond annotations: explains that invoke runs MCPs one-off without installation, returns connect/checkout links for auth/payment issues, flags installed status in search/describe, and requires owner/admin for write actions. No contradiction with annotations; openWorldHint is consistent with running external MCPs, and readOnlyHint=false aligns with mentioned write operations.

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 long but dense, with a logical flow: introduction, core workflow, key caveats, usage distinctions, prompt library, and permissions. Every sentence adds value, and the front-loaded purpose ensures immediate clarity. Despite its length, it remains efficiently organized for a tool with 14 actions and 23 parameters.

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 complexity, no output schema, and sparse annotations, the description is remarkably complete. It covers all actions, their use cases, permission requirements, edge cases (auth, wallet), and return behavior for key actions like describe, get_prompt, and publish_prompt. It fully equips an agent to use the tool across all its sub-functions.

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 coverage, the description compensates by explaining the meaning and usage of key parameters: action enum values, mcp_id, tool_id, prompt_* fields, and arguments. It does not cover every optional parameter (like limit, immediate, tier_slug), but the core semantics are clear enough for agents to select and invoke correctly.

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 is the official mcp.ai marketplace catalog and runtime, covering MCP discovery, description, invocation, and installation. It also includes a prompt library, distinguishing it from sibling tools like authenticate or connect. The purpose is specific and action-oriented.

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

Usage Guidelines5/5

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

Provides explicit when-to-use guidance for each action: prefer invoke for occasional use, install only for permanent toolkit additions, list_tools for current callables, and explains subscribe/cancel, report_bug, and request_mcp. It also details the search→describe→invoke flow and auth/wallet retry procedures.

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

report_bugB
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior3/5

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

Annotations indicate idempotentHint=true, readOnlyHint=false, destructiveHint=false. The description adds that the tool can be used for feedback and missing features, and mentions including conversation for reproduction. It does not contradict annotations, but it doesn't disclose additional behavioral traits like whether it creates a ticket or sends an email, which would be useful. Given annotations cover safety, a 3 is appropriate.

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 concise, two sentences, and front-loaded with the purpose. It wastes no words, but could be slightly more structured by explicitly listing parameters. Still, it is efficient and clear.

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 has 3 parameters, no output schema, and no schema descriptions, the description is somewhat incomplete. It explains the 'conversation' parameter's purpose but not 'context' or the exact format of 'conversation' (string vs array). The tool is simple, but the description could be more complete 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.

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. The description mentions 'conversation array' but the schema has a 'conversation' parameter of type string with default '[]', which is not clearly explained. The 'context' parameter is not mentioned at all. The description adds minimal meaning beyond the schema, leaving the agent uncertain about how to fill 'context' and 'conversation'.

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 tool's purpose: 'Report a bug, missing feature, or send feedback.' It uses a specific verb ('report') and resource ('bug'), and distinguishes from siblings by covering feedback and missing features, which are not implied by sibling names like 'agger_list_accounts' or 'authenticate'.

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 when to use the tool (when reporting bugs, missing features, or feedback) but does not explicitly state when not to use it or mention alternatives. It provides a hint about including the conversation array for reproduction, which is useful but not a full usage guideline.

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

show_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which cover the safety profile. The description adds no extra context beyond confirming it shows information, but it does not contradict annotations, so a baseline score of 3 is appropriate.

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, succinct sentence that front-loads the verb and resource with zero wasted words. It is perfectly concise for the tool's trivial purpose.

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?

For a simple version query with no parameters, no output schema, and thorough annotations, the description fully satisfies the need. It clearly states what the tool does without requiring additional behavioral details.

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 tool has zero parameters, and the schema reflects that with an empty properties object. Per rubric, 0 parameters earns a baseline score of 4. The description adds no parameter info because none exist, which is sufficient.

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 'Show' and the resource 'current MCP platform and adapter versions', making the tool's purpose unambiguous. It is distinct from sibling tools which involve listing accounts, authentication, connecting, marketplace, reporting bugs, or getting toolkit info.

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 usage (to view version info) and there are no alternative tools for this specific purpose, so no explicit when-not guidance is needed. The simplicity of the tool makes the intended context obvious.

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

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which fully covers the safe, read-only nature. The description adds specific behavioral details about what is returned (the exact state elements), which is valuable beyond the annotations. No contradictions found.

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, focused sentence that lists all key information without redundancy. It is front-loaded with the purpose and immediately provides the return contents. Every word earns its place, and it is highly readable.

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 (zero parameters, no output schema), the description is fully complete. It tells the agent exactly what information to expect, which is sufficient for selection and invocation. There is nothing missing for this level of 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 tool has no parameters, so the description carries no parameter burden. The baseline of 4 applies for a zero-parameter tool; the description does not need to add anything. It does not provide any misleading parameter information.

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 specifies the tool's purpose with a clear verb ('Returns') and resource ('current toolkit state'), and enumerates the exact contents: installed MCPs, connection status, connected accounts, and catalog tool counts. This clearly distinguishes it from siblings like show_version (version info) and agger_list_accounts (account-specific listing).

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 implicitly communicates that this is for retrieving a high-level overview of the toolkit, useful when the agent needs a snapshot of MCPs and accounts. It does not explicitly state when not to use it (e.g., for specific account details), but the context from sibling names (agger_list_accounts) provides a clear alternative. Minor gap: no explicit 'use this instead of X' guidance.

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
    Not graded
    quality
    B
    maintenance
    Enables AI agents to get real home & auto insurance quotes and start binding through a network of licensed independent agencies.
    Apache 2.0
  • F
    license
    Not graded
    quality
    C
    maintenance
    This server enables AI agents to provide insurance recommendations, validate user profiles, generate contract drafts, and manage electronic signature workflows with human approval.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.