Skip to main content
Glama

OTP MCP Server

Public Model Context Protocol server for OTP — Organization Transport Protocol (orgtp.com).

Install this in any MCP client (Claude Desktop, Cursor, Windsurf, Cline, Zed, Continue) and your assistant can answer questions about cross-organizational best practices, network learnings, publishers, and patterns — no account required.

What is OTP?

OTP is the coordination intelligence layer for AI-augmented organizations. Think Transactive Memory System, but for the era of agent teams. Organizations publish what works, capture what fails, and any agent on any participating org can pull that wisdom before acting.

Related MCP server: Glean Remote MCP Server

The 10 Questions This Server Answers

Tool

Question

otp_about

What is OTP and how does it work?

otp_search_best_practices

What's the best practice for [topic]?

otp_network_learnings

What has the network learned recently?

otp_list_publishers

Which organizations publish on OTP?

otp_get_org

What does [org name] publish?

otp_get_patterns

What patterns repeat across organizations?

otp_rules_for_role

What rules apply to a [role/agent type]?

otp_sample_kpis

What KPIs are organizations tracking?

otp_publishing_guide

How do I publish my organization's playbook?

otp_get_org_chart

Show me the live agent org chart of a publisher.

Install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "otp": {
      "command": "npx",
      "args": ["-y", "@orgtp/mcp-server"]
    }
  }
}

Cursor / Windsurf / Cline

{
  "mcpServers": {
    "otp": {
      "command": "npx",
      "args": ["-y", "@orgtp/mcp-server"]
    }
  }
}

Local development

git clone https://github.com/sneeze-it/otp-mcp-server.git
cd otp-mcp-server
npm install
npm run build
npm start

Configuration

Env var

Default

Purpose

OTP_API_BASE

https://orgtp.com/api/v1

Override to point at a self-hosted OTP backend.

Try It

Once installed, ask your assistant:

  • "Use OTP to tell me what cross-org best practices exist for sales pipeline reactivation."

  • "Use OTP to show me what organizations are publishing on the network."

  • "Use OTP to pull the agent org chart for sneeze-it."

  • "Use OTP to find recent network learnings about agent retirement."

License

MIT — see LICENSE.

Contributing

This server is a public, read-only discovery layer. For write operations (publishing, capturing learnings, updating KPIs), use the authenticated OTP MCP available to verified publishers at orgtp.com.


Built by Sneeze It. Maintained as part of the OTP project.

Available Tools

10 tools
otp_aboutA

Explain what OTP (Organization Transport Protocol) is, what problem it solves, and how it works. Start here if you've never heard of OTP. No arguments.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

Despite lacking annotations, the description discloses that the tool takes 'No arguments' and explains its purpose as informational. It implies no destructive or complex behavior, which is sufficient for this simple 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?

The description is extremely concise—two sentences—with no wasted words. It front-loads the purpose and immediately provides usage guidance, earning its place efficiently.

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 (no parameters, no output schema), the description fully covers what the tool does and when to use it. It is complete for an introductory informational 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?

With zero parameters, the description naturally adds meaning by stating 'No arguments.' The schema coverage is 100%, and no parameter documentation is needed, so a baseline score 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 'Explain what OTP is, what problem it solves, and how it works.' It uses a specific verb ('explain') and resource ('OTP'), and distinguishes itself from sibling tools (e.g., 'otp_list_publishers') by being the introductory resource.

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 includes 'Start here if you've never heard of OTP,' providing explicit context for when to use this tool. It does not specify exclusions or alternatives, but the usage context is clear and appropriate for this introductory tool.

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

otp_get_orgA

Get a specific organization's public profile: who they are, what they publish, their agent roster (if exposed), and links to their work.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe org's OTP slug (e.g. 'sneeze-it'). If unknown, use otp_list_publishers first.

TDQS

A4.4/5.0
Behavior3/5

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

With no annotations, the description carries full behavioral transparency burden. It correctly implies a read-only operation ('public profile'), but does not disclose error behavior for invalid slugs, authentication requirements, rate limits, or whether the returned data is structured (e.g., JSON). This is adequate but not thorough.

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 sentence with no wasted words. It is front-loaded with the core action and concisely lists the returned content. 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?

Given the simple tool (1 param, no output schema, no nested objects), the description is largely complete. It states what the tool returns (public profile with specifics). However, it omits the return format or structure, which would be helpful but not critical for such a straightforward operation.

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%, so baseline is 3. The description adds value by contextualizing the slug as an 'OTP slug' with an example ('sneeze-it') and a fallback strategy (use otp_list_publishers if unknown), beyond the schema's brief description.

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 'Get' and the resource 'specific organization's public profile,' listing specific contents (who they are, what they publish, agent roster, links). It distinguishes from sibling tool otp_list_publishers by being for a specific org, not a list.

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 usage guidance: it tells the agent to use the slug parameter and, if unknown, to first use otp_list_publishers. This directly addresses when to use this tool vs. the sibling and includes a concrete alternative.

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

otp_get_org_chartA

Fetch a publisher's public agent + human org chart. Shows seats, accountability, and which seats are filled by humans vs agents. Powerful for seeing what an L8 organization actually looks like.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesPublisher slug (e.g. 'sneeze-it').

TDQS

A3.7/5.0
Behavior3/5

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

The description implies a read operation with 'Fetch', but without annotations, it should explicitly state it does not modify data. It adds value by describing return content but leaves behavioral traits unaddressed.

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?

Two concise sentences plus a promotional line; front-loaded with the core function. The third sentence is slightly extraneous but not harmful, so a minor deduction.

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 no output schema, the description adequately explains return content (seats, accountability, human vs agent). For a simple 1-parameter tool, this is nearly complete; only lacks mention of data format or pagination.

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% for the single 'slug' parameter, so the tool description need not add more. Baseline score applies as no additional parameter context is provided 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?

The description clearly states the verb 'Fetch' and the resource 'public agent + human org chart', distinguishing it from sibling tools like otp_get_org by specifying inclusion of agent vs human seats and accountability details.

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?

No explicit guidance on when to use this tool over alternatives like otp_get_org; only implies it for seeing L8 organization structure, but lacks direct comparison or exclusion criteria.

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

otp_get_patternsB

Surface convergent patterns across OTP organizations: practices that multiple orgs have independently arrived at. The 'everyone is solving this the same way' signal.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
topicNoOptional topic filter, e.g. 'sales', 'agents', 'ops'.

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden. It does not disclose behavioral traits: is it read-only? Does it require authentication? Are there rate limits? The description only states the purpose, leaving the agent to assume safety without confirmation.

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?

Extremely concise: two sentences that front-load the verb and resource. No fluff. However, the metaphor might be slightly vague, but overall efficient.

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?

With no required parameters, no output schema, and a simple purpose, the description is nearly adequate. But it lacks return value description (e.g., 'returns a list of patterns') and behavioral context, which are needed for full completeness.

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 50% (topic has description, limit does not). The tool description adds no parameter information beyond what is in the schema. For limit, it does not clarify what it limits (e.g., number of patterns returned). Prevents the agent from understanding parameter behavior without additional context.

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 'surface' and the resource 'convergent patterns across OTP organizations', with a helpful metaphor ('the everyone is solving this the same way signal'). This distinguishes it from siblings like otp_search_best_practices, which likely searches for individual practices rather than patterns.

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 explicit guidance on when to use this tool versus alternatives like otp_search_best_practices or otp_sample_kpis. The description implies use for discovering consensus patterns but does not provide when-not-to-use or substitute tools.

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

otp_list_publishersB

List organizations actively publishing on OTP. Returns name, slug, publish count, and last-publish date for each.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 25).

TDQS

B3.4/5.0
Behavior2/5

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

No annotations provided, so description carries full burden. Does not disclose if results are sorted, paginated, or what 'actively publishing' means. No mention of rate limits, authentication, or side effects. For a list tool, more detail on behavior is expected.

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 that directly convey purpose and output. No unnecessary words. Front-loaded with the core action.

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 list tool with one parameter and no output schema, the description covers the essential information: what is listed and returned. It lacks some context (e.g., pagination behavior, ordering) but is adequate for an agent to understand the tool's basic function.

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% with the 'limit' parameter already described. The tool description does not add new information about the parameter beyond what the schema provides, so baseline score of 3 applies.

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 (list organizations), the scope (actively publishing on OTP), and the return fields (name, slug, publish count, last-publish date). Distinguishes well from sibling tools like otp_get_org which retrieves a specific org's details.

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 explicit guidance on when to use this tool over alternatives like otp_get_org or otp_search_best_practices. The description implies usage for listing publishers but does not clarify scenarios or limitations.

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

otp_network_learningsB

Surface what organizations on the OTP network have learned recently. Each learning is a captured correction or success: what failed, what to do, why. The cross-org coordination intelligence feed.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 20).
since_daysNoLook back this many days (default 7).

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden but omits behavioral details such as side effects, authentication requirements, rate limits, or whether it is read-only. It only describes the output content.

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 efficient sentences, front-loaded with the main action, no filler words. Every sentence adds value.

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's simplicity (2 simple params, no output schema), the description covers the purpose and content well but lacks details on return format or structure, which would be helpful for a complete understanding.

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% with clear descriptions for both parameters (limit, since_days). The description adds minimal extra meaning beyond the schema, only hinting at recency with 'recently'.

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 surfaces learnings from OTP network organizations, specifies the content (corrections/successes with what failed, what to do, why), and distinguishes it from sibling tools by framing it as 'cross-org coordination intelligence feed'.

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 explicit guidance on when to use this tool versus alternatives like otp_get_patterns or otp_search_best_practices. No mention of prerequisites or context.

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

otp_publishing_guideA

Return the step-by-step guide for becoming an OTP publisher: how to capture learnings, publish your first OOS claim, and connect your agent army to the network. No arguments.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior4/5

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

No annotations are provided, and the description does not explicitly state that this is a read-only operation or whether authentication is required. However, the 'No arguments' note and the nature of a guide imply a safe, stateless retrieval. The description could be more explicit but is adequate for a simple tool.

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 at three sentences, but the structure could be improved by front-loading the tool's purpose more bluntly. Still, every sentence adds value: what it is, what it covers, and the no-arguments note.

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 lacks output schema and does not specify the format of the guide (e.g., text, bullet points, JSON). Given the tool's simplicity and the array of sibling tools, more detail about the return value would improve completeness.

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?

There are zero parameters and schema coverage is 100%, so the description does not need to add parameter-level detail. The baseline score for zero-parameter tools is 4, and the description appropriately states 'No arguments.'

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 step-by-step guide for becoming an OTP publisher, listing specific actions (capture learnings, publish OOS claim, connect agent army). It is distinct from siblings like otp_list_publishers (data retrieval) and otp_about (general info).

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 tool implicitly suggests use when needing guidance on publisher onboarding, but provides no explicit context about when to use it versus alternatives like otp_search_best_practices or otp_network_learnings. No when-not-to-use advice.

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

otp_rules_for_roleB

Get the rules and learnings that apply to a specific role or agent type. Useful when you're building an agent and want to inherit the network's accumulated wisdom for that seat.

ParametersJSON Schema
NameRequiredDescriptionDefault
roleYesRole or agent archetype, e.g. 'chief-of-staff', 'sales-agent', 'project-manager', 'ad-analyst'.
limitNo

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are present, so the description must convey behavioral traits. It indicates a read operation ('get') but does not disclose any potential side effects, authorization requirements, or data limits. While the name suggests safe retrieval, more explicit transparency would improve trust.

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 concise with two sentences, front-loading the purpose and value. Every word contributes meaning without redundancy or verbosity.

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 retrieval tool with no output schema, the description conveys enough context for an agent to use it appropriately. Minor gaps include lack of detail about return format or pagination, but overall it is sufficient.

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 50% (only 'role' has a schema description). The tool description does not elaborate on parameter meaning beyond the schema, leaving 'limit' unexplained. Given low coverage, the description fails to compensate fully.

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?

Description clearly states the tool retrieves rules and learnings for a specific role, incorporating a verb and resource. It is distinct from sibling tools like otp_network_learnings by emphasizing role-specificity, but does not explicitly differentiate from all siblings.

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 provides a use case (building an agent, inheriting wisdom) but lacks guidance on when not to use the tool or comparisons to alternatives such as otp_search_best_practices. Usage context is implied rather than fully stated.

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

otp_sample_kpisA

Show what KPIs OTP-publishing organizations are tracking. Useful for benchmarking your own scorecard against the network.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
categoryNoOptional category filter, e.g. 'revenue', 'ops', 'agents', 'people'.

TDQS

A3.6/5.0
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. It only states 'Show what KPIs...' without disclosing whether it is read-only, idempotent, or has authentication/rate-limit constraints. The return format is not mentioned.

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 clearly convey purpose and a use case without any unnecessary words. It is front-loaded with the primary function.

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 explains the tool's purpose and typical use, but given the absence of an output schema and annotations, it lacks details on return structure, limits, or error handling.

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 coverage is 50% (category has a description, limit does not). The tool description does not explain or add any meaning to the parameters beyond what appears in 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?

The description clearly states the tool shows KPIs tracked by OTP-publishing organizations and suggests a benchmarking use case. It is distinct from sibling tools such as otp_list_publishers or otp_get_org.

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 a clear use case ('benchmarking your own scorecard against the network') but does not explicitly state when not to use the tool or suggest alternatives.

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

otp_search_best_practicesA

Search OTP's public best practices library across all publishing organizations. Returns vetted operational patterns that have worked in real companies. Use for any 'what's the best way to...' question.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 10, max 50).
queryYesNatural-language description of the topic, e.g. 'pipeline reactivation', 'agent retirement protocol', 'L10 meeting structure'.

TDQS

A3.8/5.0
Behavior2/5

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

With no annotations, the description carries full burden but lacks behavioral details: no mention of read-only nature, auth requirements, rate limits, result structure, or pagination. Only states returns vetted patterns but no specifics on output format or ordering.

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?

Three sentences with zero waste: action and scope in first, return value in second, usage context in third. Information is front-loaded and every sentence is necessary.

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 search tool with good schema coverage, the description adequately covers purpose and usage. Could briefly mention results are from public library only (already done) or output format (not in schema but acceptable for a search tool).

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 the schema already provides clear descriptions for both parameters. The tool description adds no additional meaning beyond the schema, earning the baseline score of 3.

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 searches OTP's public best practices library across all publishing organizations, distinguishes itself from siblings like otp_get_patterns (which likely scopes to specific orgs), and explicitly mentions use case for operational pattern questions.

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 explicit when-to-use guidance: 'for any "what's the best way to..." question.' Does not explicitly mention when not to use or alternatives, but the context is clear enough for an agent to infer appropriate usage.

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.

  1. 10 tool updatesv0.1.1
    • First observedotp_about
    • First observedotp_get_org
    • First observedotp_get_org_chart
    • First observedotp_get_patterns
    • First observedotp_list_publishers
    • First observedotp_network_learnings
    • First observedotp_publishing_guide
    • First observedotp_rules_for_role
    • First observedotp_sample_kpis
    • First observedotp_search_best_practices

TDQS

A3.9/5.0

Scored across 10 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: listing publishers, getting org details, patterns, rules, KPIs, guides, org charts, about info, search, and network learnings. No overlap.

Naming Consistency5/5

All tools follow a consistent 'otp_verb_noun' pattern (e.g., otp_list_publishers, otp_get_org). No mixing of conventions.

Tool Count5/5

10 tools is well-scoped for the OTP domain, covering information retrieval, guides, and search without being excessive or sparse.

Completeness4/5

Covers most aspects of OTP: publishers, patterns, rules, KPIs, org charts, best practices, and learnings. Missing a direct publish action, but the guide tool explains how to become a publisher.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI assistants and developer tools to securely access and interact with an organization's enterprise knowledge, documents, and people through natural language while respecting existing access permissions.
    165
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables AI agents to contribute and search a shared knowledge commons, so that solutions learned by one agent become available to all connected agents.
    16
    1
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    Enables AI assistants to search, create, and manage knowledge graphs in Aiqbee brains for architecture, portfolio, and digital strategy.
    7
    MIT