Skip to main content
Glama

federation_enter_tenant

Read-onlyIdempotent

Enter a tenant to receive its tool surface (progressive disclosure). The gateway is a small catalog — list tenants with federation_list_tenants, then enter one here. The reply is authoritative: platform_tools / platform_tool_defs carry the entered platform's REAL action tools with descriptions and schemas (e.g. retail → catalog_search / order_create; bookings → services_search / booking_hold); composed_tool_defs carries its knowledge tools. Your session persists by the mcp-session-id header (echoed on every response; idle sessions expire after 24h — re-enter to resume): after entering, branched tools are callable with ordinary MCP tools/call on this session and appear in its tools/list; re-entering re-scopes. REST twin: POST /tools/ on this host, JSON body = the tool's arguments plus {"tenant_id":""}, with your Authorization header for scoped tools. Info tenants (about-us, how-to) serve read-only knowledge directly on tools/list. Returns: { platform_tools: [...] } — the authoritative tool list branched onto your session for that tenant. Example: call federation_enter_tenant with arguments {"tenant_id":""}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tenant_idYesThe tenant id to enter (e.g. "about-us").

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint/idempotentHint/destructiveHint, and the description adds substantial behavioral mechanics beyond them: session persistence via mcp-session-id, 24h idle expiry, re-entering re-scopes, the authoritative reply structure (platform_tools/platform_tool_defs vs. composed_tool_defs), and REST twin behavior. No contradiction with annotations is present.

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 front-loaded with the core purpose and every major sentence adds distinct value (progressive disclosure, session lifecycle, REST twin, info tenants, return shape). However, it is somewhat verbose with minor redundancy: "authoritative" appears twice, and the final example sentence largely repeats schema documentation. Slightly trimmed would be ideal.

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 tool's high complexity (session scoping, progressive disclosure, REST twin, no output schema), the description is remarkably complete: it explains the reply contents, session expiry/re-entry, re-scoping semantics, and the REST alternative. Minor gaps remain, such as error behavior for invalid/unknown tenant ids and clearer guidance on whether info tenants need to be entered.

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 coverage is 100% (tenant_id with example "about-us"), so the baseline is 3. The description adds contextual meaning: tenant ids come from federation_list_tenants, appear in the REST twin body as {"tenant_id":"<entered tenant>"}, and are used in the worked example. This elevates it above baseline but does not reach 5 since the schema already documents the parameter well.

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 opening sentence states a specific verb+resource+outcome: "Enter a tenant to receive its tool surface (progressive disclosure)." It clearly distinguishes this from sibling federation_list_tenants (list vs. enter) and explains its gateway role, including info-tenant behavior. This is unambiguous and well differentiated.

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?

Explicit sequencing is given: "list tenants with federation_list_tenants, then enter one here." The description also names an alternative access path ("REST twin: POST /tools/<name>"), describes when re-entry is needed (24h idle expiry), and notes that info tenants serve read-only knowledge directly on tools/list. This is strong when-to-use guidance.

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

B3.4/5.0
Disambiguation3/5

Most tools have distinct purposes, but there is overlap among introspection tools (introspection_system_probe vs. introspection_system_confidence vs. introspection_system_diff) and between similar reading tools (federation_canon_get vs. federation_tenant_info). Descriptions help clarify but boundaries are not always crisp.

Naming Consistency2/5

Naming is inconsistent: some tools use verb_noun (federation_bond_post, federation_bond_release), some use noun_verb (federation_arena, federation_help), and some use noun_noun (about_us_about, moltbook_read). There are also tools with dot separators (about_us_about) and camelCase (cohort_email_send) mixed with snake_case, making patterns unpredictable.

Tool Count2/5

With 72 tools, the surface is extremely large and likely to overwhelm agents. While the server covers a complex federation platform, this many tools suggest poor scoping or lack of consolidation, making it hard for agents to discover and choose the right tool.

Completeness3/5

The server covers core federation lifecycle (create/list/update/delete tenants, manage managers, bonds, keys) and some platform operations, but there are gaps such as missing tenant deletion workflow details, no explicit tool for updating manager info, and no direct tool for tenant-level settings beyond basic update. The introspection suite is thorough but the domain may not be evenly covered.

Resources