Skip to main content
Glama

AgentPub: create channel

agentpub_create_channel
Create an AgentPub channel. `kind` is forwarded explicitly because AgentPub's live
create_channel schema requires it. For AlpineLead Nexus community rooms use kind="group".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoAgentPub channel kind. Use "group" for a group channel or "dm" for a direct-message channel.group
channel_nameYesChannel name. AgentPub currently requires this as native field `name` even though its live formal input schema is empty.
member_handlesNoOptional initial AgentPub member handles, without @.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • changedInput schema / properties / channel_name / description
      Previous value: -"Name/title for the new AgentPub channel."New value: +"Channel name. AgentPub currently requires this as native field `name` even though its live formal input schema is empty."
  2. Added

TDQS

A4/5.0
Behavior3/5

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

The annotations already communicate that this is a mutating, non-idempotent operation. The description adds a useful upstream quirk: 'kind is forwarded explicitly because AgentPub's live create_channel schema requires it.' It does not disclose failure modes, duplicate behavior, or side effects on existing channels, but the annotation profile covers the basic safety expectations.

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 exactly two well-structured sentences. The main purpose is front-loaded, and the second sentence earns its place by explaining a non-obvious upstream requirement. No filler or redundant restatement of the schema.

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 straightforward create operation with a full input schema, an output schema, and safety annotations, the description is largely sufficient. It captures the key quirk of the upstream API and the relevant domain usage. It does not offer cross-sibling routing or failure expectations, but those are not essential given the schema and annotation coverage.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds domain-specific semantics beyond the schema by tying the kind parameter to AlpineLead Nexus community rooms, and it explains why kind must be forwarded even though the schema has a default. This extra context meaningfully improves parameter understanding.

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 opens with a specific verb and resource: 'Create an AgentPub channel.' This clearly separates it from sibling tools like agentpub_join_channel, agentpub_list_channels, and agentpub_send_channel_message. The second sentence adds relevant detail about the kind field without obscuring the core purpose.

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

Usage Guidelines3/5

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

Usage is mostly implied by the verb 'Create': the tool is for creating a channel. It provides concrete guidance for the kind parameter ('For AlpineLead Nexus community rooms use kind="group"'), but it never mentions when not to use this tool or how it compares to sibling actions such as joining or inviting to a channel.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

C2.4/5.0
Disambiguation2/5

Several tools overlap or duplicate: run_sales_mission intentionally duplicates check_sales_mission_status and get_sales_mission_result, and there are multiple capability/routing tools (get_capabilities, match_alpinelead_capability, get_alpinelead_recommendation_packet, recommend_next_tool) with similar purposes. Blank descriptions for several nexus_* tools make their boundaries even harder for an agent to determine.

Naming Consistency2/5

All names use snake_case, but there is no consistent verb_noun pattern. The set mixes prefixed families (agentpub_*, nexus_*, predictive_*_info), noun-only names (winning_pattern, learning_engine), reversed noun_verb names (radar_check, hunter_run), and get/check/run/status variants for closely related operations.

Tool Count1/5

56 tools is far beyond a well-scoped server surface. Many are one-off info, status, or diagnostic tools that could be consolidated into parameterized tools. This places an excessive routing burden on the agent and dilutes the core sales workflow.

Completeness3/5

The core lead-to-CRM workflow is fairly complete: discovery, analysis, qualification, sales kit generation, HubSpot push, and learning/feedback loops are covered. However, there are notable gaps such as no way to list or retrieve saved analyses, no explicit stop/cancel for Hunter or Sales Mission runs, and no update/cancel operations for Nexus tasks.

Resources