Skip to main content
Glama

basecite

Server Details

Tenant-scoped evidence intake and controlled AI context over MCP.

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 · MCP 2025-06-18
URL
Repository
paxton888/basecite-agent-discovery
GitHub Stars
0

TDQS

A4.2/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly separate target: one fetches a single customer AI-context record, one describes service capabilities, and one returns public links. There is no realistic ambiguity about which tool to use for a given need.

Naming Consistency5/5

All tools use the consistent basecite_get_<object> pattern, and the object names make their purpose obvious. No mixed conventions or vague generic verbs are present.

Tool Count5/5

Three tools is small but well-scoped for a narrow read-only service; each tool earns its place and none are redundant. The two non-data tools are distinct, covering capabilities and public links respectively.

Completeness3/5

The only data tool requires an exact org_id and upload_id with no list/search mechanism, so agents lacking those IDs can dead-end. The capabilities and discovery tools are useful metadata but do not fill that retrieval gap, though the 'no list-all' boundary may be intentional.

Available Tools

3 tools
basecite_get_ai_contextA
Read-onlyIdempotent
Inspect

Return one bounded customer/solution-company submitted AI context record by org_id and upload_id with provenance and not_evaluated fields. No raw file download, list-all, bulk export, truth verification, company verification, or ranking claim is returned.

ParametersJSON Schema
NameRequiredDescriptionDefault
org_idYes
upload_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
org_idNo
statusNo
upload_idNo
ai_contextNo
provenanceNo
not_evaluatedNo

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true and idempotentHint=true. The description adds valuable behavioral context beyond those annotations: the result is bounded to one record, includes provenance and not_evaluated fields, and deliberately returns no file download, list, export, or verification claims. This aligns with and reinforces the non-destructive, read-only profile.

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 a single sentence that front-loads the action, resource, and key parameters. The exclusion list adds clarity and is directly relevant to preventing misuse, though it is slightly long; every part 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 strong annotations, simple two-parameter schema, and presence of an output schema, the description covers the essential behavioral boundaries and the exact retrieval scope. The only notable gap is not explicitly connecting this tool to its siblings, but that is not necessary for correct invocation.

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 0%, so the description must compensate. It does identify both parameters as the identifying key for the record, which adds meaning beyond the raw schema. However, it does not elaborate on the semantics of org_id or upload_id beyond their names and their combined role in locating the record, so the compensation is adequate but not rich.

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 a specific verb ('Return'), identifies the exact resource ('one bounded customer/solution-company submitted AI context record'), and names the identifying parameters (org_id, upload_id). It also explicitly distinguishes itself by excluding list-all, bulk export, and verification/ranking claims, which separates it from broader sibling tools.

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 clearly implies the tool is for fetching a single, bounded record by a composite key and states several non-uses ('No raw file download, list-all, bulk export...'). It does not explicitly name sibling alternatives or provide a when-to-use vs. when-not-to-use comparison, but the context is clear enough for correct selection.

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

basecite_get_capabilitiesA
Read-onlyIdempotent
Inspect

Return the machine-readable capabilities and integration boundaries of the BaseCite service. This tool never returns customer data and requires no credential.

ParametersJSON Schema
NameRequiredDescriptionDefault
include_boundariesNoInclude the public safety and data-access boundaries in the capabilities response.

Output Schema

ParametersJSON Schema
NameRequiredDescription
serviceNo
boundariesNo
capabilitiesNo
customer_dataNo
documentationNo
authenticationNo
public_resourcesNo

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already mark this as read-only, idempotent, and non-destructive, so the description need not repeat those. It adds meaningful behavioral context by stating that the tool 'never returns customer data' and 'requires no credential,' which are useful safety and access insights beyond the 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?

Two concise sentences provide the core purpose and key safety context with no filler. The main capability is front-loaded, and every sentence earns its place.

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?

This is a simple, zero-required-parameter, read-only introspection tool with an output schema and complete annotation coverage. The description covers the essential context: machine-readable output, no customer data, and no credential requirement, making it fully adequate for correct invocation.

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%: the single optional parameter include_boundaries is fully documented in the schema. The description itself adds no additional parameter meaning, so a baseline score 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 a specific verb and resource: 'Return the machine-readable capabilities and integration boundaries of the BaseCite service.' This clearly distinguishes the tool from siblings like basecite_get_ai_context and basecite_get_public_discovery by focusing on service capabilities and boundaries rather than AI context or public discovery data.

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 this tool is for introspecting what BaseCite can do and where its boundaries are, and notes that no credential is needed. However, it does not explicitly state when to prefer this over the sibling tools or when not to use it, leaving some routing inference to the agent.

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

basecite_get_public_discoveryA
Read-onlyIdempotent
Inspect

Return BaseCite public developer, API, MCP, registry, and safety-boundary links. This tool never returns customer data and requires no credential.

ParametersJSON Schema
NameRequiredDescriptionDefault
include_registryNoInclude the Smithery and Official MCP Registry links in the public discovery response.

Output Schema

ParametersJSON Schema
NameRequiredDescription
sdkNo
openapiNo
serviceNo
websiteNo
registryNo
boundariesNo
mcp_endpointNo
developer_docsNo
official_registryNo

TDQS

A4/5.0
Behavior4/5

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

The annotations already declare read-only, idempotent, and non-destructive behavior. The description adds meaningful context beyond these annotations by disclosing that the tool never returns customer data and requires no credential, which is useful for an agent deciding whether this tool is safe and 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 two short sentences with no redundant filler. The core function is front-loaded, and the behavioral caveat about customer data and credentials is placed directly after, making it efficient and easy to parse.

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 tool with no required parameters, full schema coverage, and an output schema, the description covers the essential facts: what it returns, that it is public-only, and that no credentials are needed. It lacks explicit sibling differentiation, but the tool's low complexity means nothing critical 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?

The single parameter include_registry is fully described in the schema, so schema coverage is 100%. The description does not add much parameter-level detail beyond the schema, but it does slightly reinforce that registry links are part of the public discovery output. Baseline 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 states a specific verb and resource: returning BaseCite public developer, API, MCP, registry, and safety-boundary links. It clearly separates this from the sibling tools by emphasizing 'public discovery' and 'never returns customer data', making the tool's scope immediately understandable.

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 usage context by noting it requires no credential and only returns public links, which suggests when to use it. However, it does not explicitly compare against basecite_get_ai_context or basecite_get_capabilities, nor does it state when not to use this tool, leaving the routing mostly to inference.

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. 3 tool updates
    • First observedbasecite_get_ai_context
    • First observedbasecite_get_capabilities
    • First observedbasecite_get_public_discovery

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables policy-governed MCP interactions with deterministic authorization, tenant isolation, minimized PII exposure, and human approval gates for sensitive mutations, while producing structured audit events.
    3
    MIT
  • A
    license
    B
    quality
    A
    maintenance
    An MCP-native evidence retrieval platform that ingests source material, builds lexical and vector indexes, performs hybrid retrieval, and returns structured evidence packages for AI assistants.
    8
    8
    Apache 2.0
  • A
    license
    A
    quality
    C
    maintenance
    MCP server for Tru8 Evidence Research that enables AI agents to submit claims or URLs and receive source-traced evidence organized by tier and type with element decomposition and relationship mapping.
    3
    50 PyPI
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.