Skip to main content
Glama

COTAL actions (cotal.ai)

Server Details

cotal.ai actions: product overview, site search, build log, feedback, Cloud waitlist, updates, calls

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Cotal-AI/Cotal
GitHub Stars
261
Server Listing
COTAL

TDQS

A4.1/5.0
Disambiguation5/5

Each tool has a distinct purpose: content retrieval (list/search/get), overview, and separate engagement actions (waitlist, call, feedback, newsletter). No two tools overlap in functionality or would cause ambiguity for an agent.

Naming Consistency4/5

Tools mostly follow a clear snake_case verb_noun pattern (get_post, list_posts, submit_feedback). However, cotal_overview and cotal_search are single-word nouns rather than verb_noun, introducing a minor inconsistency.

Tool Count5/5

With 8 tools, the set is well-scoped for a public site/API assistant covering content discovery, product overview, and user engagement actions. It is neither too sparse nor bloated.

Completeness5/5

The tool surface covers the core user journeys: reading posts, searching content, getting an overview, joining waitlist, requesting a call, submitting feedback, and subscribing. No obvious missing operations for the stated domain.

Available Tools

8 tools
cotal_get_postRead a build-log postA
Read-onlyIdempotent
Inspect

Returns one build-log post as markdown (title, summary, date, author, full body) by its slug. Get slugs from cotal_list_posts or cotal_search.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe post slug, e.g. 'agi-summit-2026'.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnly=true, idempotent=true, and destructive=false. The description adds that it returns markdown content with specific fields (title, summary, date, author, full body), which provides context about the output behavior without contradicting the annotations. No side effects are implied, consistent with 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 two sentences with no redundancy. It states the purpose, the output format, and how to obtain the slug, all efficiently. No unnecessary words or ambiguity.

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 get-by-slug tool with a single parameter, the description is complete. It tells what it returns, how to get the slug, and the output format. No output schema is provided, but the description sufficiently describes the return value. Given the simplicity, nothing essential is missing.

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

Parameters4/5

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

The schema fully covers the parameter with minLength, maxLength, and a description. The description adds a concrete example ('agi-summit-2026') that clarifies the expected format, which is helpful beyond the schema. Coverage is high, so the baseline is 3, but the example earns a 4.

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 it returns a single build-log post by slug, distinguishing it from list_posts (which likely lists all posts) and search (which finds posts). The verb 'returns' and the specific resource 'post' make the purpose unambiguous.

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 instructs to get slugs from cotal_list_posts or cotal_search, indicating when to use this tool after obtaining a slug. However, it does not explicitly state when not to use alternatives, such as 'use this instead of list_posts when you need full details of one post.' Still, the guidance is clear enough.

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

cotal_join_waitlistJoin the Cotal Cloud waitlistA
Idempotent
Inspect

Reserves a seat on the waitlist for Cotal Cloud, the hosted Cotal mesh (closed alpha), for the user's email. Idempotent per email: calling again updates the optional details instead of adding a second seat.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesThe user's email address. Required so the record has a traceable origin.
sandboxNoDry run: validate the call, apply rate limits, store nothing. Use it to test the integration.
linkedinNoThe user's LinkedIn profile URL, optional.
use_caseNoWhat the user wants the hosted mesh for.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already provide idempotentHint=true, and the description adds valuable detail beyond that by explaining the exact idempotent behavior: 'calling again updates the optional details instead of adding a second seat.' This enriches the annotation with practical context. It also notes the closure status (closed alpha) which sets expectations. No contradictions.

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 just two sentences with zero fluff. The first sentence delivers the core action, and the second delivers the key behavioral nuance (idempotency). It is front-loaded and every word 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?

The description is complete for the primary use case. It explains what the tool does and its idempotent behavior, and the schema covers all parameters. With no output schema and simple parameters, it doesn't need to describe return values or error handling. Minor gap: no mention of what happens if the email is invalid, but that's schema's role, so this is sufficient.

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 parameter already has a clear description. The tool description doesn't add extra meaning beyond the schema—it only mentions 'user's email' generically, which is already in the schema. The baseline of 3 applies since the schema handles parameter semantics fully.

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 specific action ('Reserves a seat on the waitlist for Cotal Cloud') with a clear verb and resource. It also identifies the scope (user's email) and the product context (closed alpha), making it unambiguous and distinct from sibling tools like cotal_subscribe_newsletter or cotal_request_call.

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

Usage Guidelines4/5

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

The description provides clear context for when to use the tool: when a user wants to join the Cotal Cloud waitlist. It doesn't explicitly name alternative tools or exclusion conditions, but the purpose is self-evident and distinct. This is slightly above baseline but not a 5 because there is no explicit 'use when' or 'instead of' guidance.

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

cotal_list_postsList build-log postsA
Read-onlyIdempotent
Inspect

Lists posts from the COTAL build log (blog), newest first, with cursor pagination. Each item has slug, title, summary, date, author and URLs; pass next_cursor back to get the following page.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size (default 10, max 50).
cursorNoThe next_cursor value from a previous call.

TDQS

A4.1/5.0
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, so the safety profile is covered. The description adds behavioral context about pagination (cursor-based, pass next_cursor for next page) and the fields returned (slug, title, summary, date, author, URLs). This aligns with the calibration example (get_calls) where description adds scoping beyond annotations and scored 3. No contradiction with 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, well-structured sentence that front-loads the core purpose (lists posts newest first) and then logically covers pagination and return item composition. No filler words, every clause earns its place. It is extremely concise while remaining informative.

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 read-only list tool with no output schema, the description adequately explains the return items (fields) and the pagination mechanism (next_cursor). It gives an agent everything needed to call it correctly and iterate through pages. Given the low complexity and strong annotation coverage, nothing essential is missing.

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 both limit and cursor are fully documented in the schema. The description adds a slight clarification about next_cursor usage ('pass next_cursor back to get the following page') but does not provide syntax or format details beyond the schema. Per the rubric, with high schema coverage the baseline is 3, and the minimal extra detail doesn't warrant a higher score.

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 ('lists'), a specific resource ('posts from the COTAL build log'), and adds ordering ('newest first') and pagination mode ('cursor pagination'). It clearly distinguishes this from siblings like cotal_get_post (single post) and cotal_search (search-based lookup), leaving no ambiguity about what this tool does.

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 usage context: it lists posts with pagination and instructs to pass next_cursor back for the following page. It doesn't explicitly state when not to use this (e.g., for searching use cotal_search), but the purpose is so specific that an agent would naturally choose it for listing posts. It lacks explicit alternatives or exclusion criteria, hence not a 5.

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

cotal_overviewWhat COTAL isA
Read-onlyIdempotent
Inspect

Returns a structured overview of COTAL: what it is, who it is for, when to use it, how to install it, the site's API and MCP surface, pricing, and canonical links. Call this first when a user asks what cotal.ai does. Pass section to get one part only.

ParametersJSON Schema
NameRequiredDescriptionDefault
sectionNoWhich part of the overview to return (default: all).

TDQS

A4.3/5.0
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, so safety is covered. The description adds value by specifying the return content (structured overview listing sections) and reiterating that it is a safe, first-call informational tool. No contradiction; it enriches the behavioral picture without repeating annotation fields verbatim.

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, zero filler. The first sentence front-loads the core purpose and lists content areas efficiently; the second sentence gives the only usage hint needed. Every word earns its place, and the structure makes scanning easy for an agent.

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 info-retrieval tool with one optional parameter and read-only annotations, the description is complete. It tells the agent what the tool returns, when to invoke it, and how to narrow the response. No output schema exists, but the description's enumeration of included sections sufficiently sets expectations. Nothing essential is missing.

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 100% – the `section` parameter has a complete enum and a description explaining 'Which part of the overview to return (default: all)'. The description's phrase 'Pass `section` to get one part only' adds minimal meaning beyond the schema, just clarifying the usage intent. This meets the baseline 3, nothing more.

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 a specific verb and resource ('Returns a structured overview of COTAL') and enumerates the exact content areas (what it is, who it's for, install, API/MCP, pricing, links). It also explicitly frames the tool's role ('Call this first when a user asks what cotal.ai does'), which unmistakably distinguishes it from the sibling tools that perform targeted actions like searching or joining a waitlist.

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 explicit when-to-use guidance ('Call this first when a user asks what cotal.ai does') and a usage tip for the optional parameter ('Pass `section` to get one part only'). However, it does not explicitly state exclusions or contrast with specific siblings, though the general-purpose framing makes the alternative clear enough from the sibling names.

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

cotal_request_callRequest a call with the foundersAInspect

Sends a discovery-call request to the COTAL founders for a company evaluating agent coordination. The team replies by email. Requires the user's work email and company.

ParametersJSON Schema
NameRequiredDescriptionDefault
painNoTheir biggest coordination pain.
roleNoThe user's role.
emailYesThe user's email address. Required so the record has a traceable origin.
agentsNoHow many agents the company runs in production.
companyYesCompany name.
sandboxNoDry run: validate the call, apply rate limits, store nothing. Use it to test the integration.
frameworksNoAgent frameworks or harnesses in use (Claude Code, LangGraph, custom…).
coordinatingNoOne line: what they are coordinating.
idempotency_keyNoOpaque key (a UUID is ideal). Reuse it when retrying so the same record is returned instead of a duplicate.

TDQS

A3.8/5.0
Behavior3/5

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

Annotations are all false and provide little information; description mentions the email reply and required fields but does not disclose side effects like record creation or rate limits (though sandbox parameter hints at it).

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, no redundant information, efficient.

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 9-parameter tool with rich schema descriptions, the description is enough to understand the core action and key requirement, though it omits guidance on when to choose this over siblings.

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?

All parameters have schema descriptions, so baseline is 3; description only reiterates the required email and company, adding little beyond the schema.

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?

Clearly states the action (sends a discovery-call request), target (COTAL founders), and context (company evaluating agent coordination). Distinguishes from sibling tools like join_waitlist and subscribe_newsletter.

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?

Does not explicitly compare with sibling tools or state when to use this instead of others; the use case is implied by the purpose but not spelled out.

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

cotal_submit_feedbackSend feedback to the COTAL teamAInspect

Files feedback (bug, idea, friction, praise, other) with the COTAL team on behalf of the user. The same log the site's feedback widget writes to. Requires the user's email so the team can follow up.

ParametersJSON Schema
NameRequiredDescriptionDefault
areaNoWhich part of COTAL it concerns (CLI, connector, docs, site…).
nameNoThe user's name, if they want it attached.
typeYesKind of feedback.
emailYesThe user's email address. Required so the record has a traceable origin.
sourceNoWhere it came from: agent name, page, or CLI.
detailsNoLonger description, steps, context.
sandboxNoDry run: validate the call, apply rate limits, store nothing. Use it to test the integration.
summaryYesOne line: what happened, or what should.
severityNoFor bugs and friction.
idempotency_keyNoOpaque key (a UUID is ideal). Reuse it when retrying so the same record is returned instead of a duplicate.

TDQS

A3.9/5.0
Behavior3/5

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

Annotations are minimal: readOnlyHint=false (write operation), destructiveHint=false, idempotentHint=false. The description adds the fact that it writes to the same log as the site's widget and requires the user's email for follow-up. However, it does not disclose the idempotency behavior (despite an idempotency_key parameter) or any rate limits, though these are not explicitly contradicted. The description adds some context but misses important operational details for a write tool.

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 concise sentences, with the core purpose front-loaded and the email requirement stated immediately. Every word adds value—no filler. The structure is ideal for an agent scanning quickly.

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 10 parameters (including enums, idempotency_key, sandbox), the description is quite thin. While the schema fully documents each parameter, the description does not explain when to use idempotency_key (e.g., for retries) or how sandbox relates to testing, which would be helpful for correct usage. There is no output schema, so the description doesn't need to cover return values. The description is adequate but lacks guidance on edge cases that a complex tool would benefit from.

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%—every parameter has a description. The description itself adds little beyond what the schema already provides; it merely highlights the email requirement, which is already documented. There is no explanation of the idempotency_key's role or how sandbox works, but the schema covers these fields adequately. This meets the baseline of 3 for tools with full schema coverage.

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 action: 'Files feedback (bug, idea, friction, praise, other) with the COTAL team on behalf of the user.' It uses a specific verb and resource, and the list of types matches the enum in the schema. It distinguishes from sibling tools (e.g., cotal_request_call, cotal_subscribe_newsletter) by focusing on feedback rather than other actions. The additional detail about the site's feedback widget further anchors its purpose.

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 when to use it (when the user has feedback to submit) but does not explicitly contrast it with alternatives like requesting a call or subscribing. It does mention the email requirement, which is a key prerequisite. There is no explicit 'use this instead of X' guidance, but the purpose is specific enough that an agent can reasonably infer the correct context. A clear exclusion list would elevate this to a 5.

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

cotal_subscribe_newsletterSubscribe to COTAL updatesB
Idempotent
Inspect

Subscribes the user's email to release updates from the COTAL team. Idempotent: an already-subscribed email is a no-op.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesThe user's email address. Required so the record has a traceable origin.
sandboxNoDry run: validate the call, apply rate limits, store nothing. Use it to test the integration.

TDQS

B3.4/5.0
Behavior2/5

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

The description repeats the idempotency hint already declared in annotations ('Idempotent: an already-subscribed email is a no-op') without adding new behavioral context. It does not disclose success/failure behavior, side effects, or prerequisites, and adds no information beyond the annotation.

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 consists of exactly two sentences with zero filler. The core action is stated first, and the idempotency note is concise. Every word contributes to clarity.

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 simplicity of the tool (two params, one required, no output schema) and full schema coverage, the description covers the essential purpose and idempotency. However, it lacks any usage context or differentiation from similar tools, which is a minor gap for completeness.

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%: both 'email' and 'sandbox' parameters already have detailed descriptions in the schema. The tool description does not mention either parameter or add any additional meaning, so the baseline of 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 uses the specific verb 'Subscribes' with a clear resource 'user's email' and target 'release updates from the COTAL team', making the action unambiguous. It is not a tautology of the tool name and provides enough specificity to understand the tool's function without needing the schema.

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 sibling tools such as cotal_join_waitlist or cotal_submit_feedback. There is no mention of alternatives, exclusion criteria, or context that would help an agent decide between this and similar subscription 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. 8 tool updates
    • First observedcotal_get_post
    • First observedcotal_join_waitlist
    • First observedcotal_list_posts
    • First observedcotal_overview
    • First observedcotal_request_call
    • First observedcotal_search
    • First observedcotal_submit_feedback
    • First observedcotal_subscribe_newsletter

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.