Attester Oracle
Server Details
Verify PyPI and npm packages, symbols, and version diffs against real artifacts. Free, no account.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- maminihds/attester-mcp
- GitHub Stars
- 0
- Server Listing
- attester-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 4 of 4 tools scored.
Each tool targets a distinct concern: package existence, symbol existence, symbol signature, and version diff. There is no overlap, so an agent can reliably select the correct tool for a given query.
All tools use the 'attester_' prefix and an entity_operation pattern (package_exists, symbol_exists, symbol_signature, version_diff). The pattern is predictable, though 'signature' and 'diff' are nouns rather than verbs, which is a minor deviation from a strict verb_noun convention.
With only 4 tools, the server is tightly scoped to its purpose of attesting package and symbol facts. The count feels neither sparse nor bloated, making it well-suited for a specialized oracle.
The tool set covers the primary needs: existence checks, symbol signature lookup, and version diffing. A possible gap is a tool for listing all symbols in a package or fetching package metadata, but these are not essential and would be peripheral to the core workflows.
Available Tools
4 toolsattester_package_existsPackage Exists (free oracle)ARead-onlyIdempotentInspect
Does this PyPI or npm package name really exist? Deterministic answer from the real published artifact, signed, with typosquat-adjacency flags on misses. Free: 25 calls/day per client IP, shared with the /demo/v1/* HTTP routes, reset 00:00 UTC. Higher volume: paid HTTP routes at https://attester.dev/llms.txt.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| ecosystem | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnly, openWorld, idempotent), the description adds substantial behavioral context: the answer is deterministic, sourced from the real published artifact, signed, and includes typosquat-adjacency flags on misses. It also discloses rate limits and shared quota with /demo/v1/* HTTP routes, which is valuable for the agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences long with every sentence adding value: purpose, behavioral details, and rate limits. It front-loads the core question and avoids any fluff or repetition of schema fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple parameter set and the existence of an output schema, the description covers purpose, behavior, constraints, and alternative access routes. It is complete for this tool; no critical information is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description compensates by explicitly mentioning both parameters: 'PyPI or npm' clarifies the ecosystem enum, and 'package name' explains the name parameter. This gives the agent enough semantic understanding even though the schema omits descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a direct question that precisely defines the tool's capability: determining whether a PyPI or npm package name exists. This is a specific verb+resource (exists + package), clearly distinguishing it from sibling tools like symbol_exists and version_diff.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use this tool (package existence checks) and provides usage policy details including free quota limits and a paid HTTP route for higher volume. It does not explicitly name alternatives but the purpose is unambiguous, so no exclusions are needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
attester_symbol_existsSymbol Exists (free oracle)ARead-onlyIdempotentInspect
Does a function, class, or constant exist in this PyPI or npm package? Answer from the indexed artifact, with closest-match suggestions on misses. Free: 25 calls/day per client IP, shared with the /demo/v1/* HTTP routes, reset 00:00 UTC. Higher volume: paid HTTP routes at https://attester.dev/llms.txt.
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| package | Yes | ||
| version | No | ||
| ecosystem | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses rate limits (25 calls/day/IP), reset time (00:00 UTC), and the paid alternative route, adding behavioral context beyond the annotations (read-only, idempotent). It also mentions 'closest-match suggestions on misses,' which clarifies return behavior. Annotations already cover safety, so the description enriches without contradicting.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences. The first sentence states the primary purpose and behavior, and the second provides rate-limit and pricing alternatives. There is no wordiness or redundancy—every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity, an output schema exists, and annotations are present, the description covers the core purpose, behavior on misses, and usage limits. It does not explain the output schema or error cases, but those are covered by structured data. Missing version semantics is a minor gap, but overall the description is contextually sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 explains that ecosystem is PyPI or npm, and symbol refers to a function, class, or constant, covering two key parameters. However, it omits the optional 'version' parameter entirely, leaving its meaning and default to the schema. Partial compensation is provided, but not complete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: checking whether a function, class, or constant exists in a PyPI or npm package. It uses specific verbs ('exist') and resources ('symbol', 'package'), and distinguishes itself from siblings like package_exists or symbol_signature by focusing on existence with closest-match suggestions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied: you would use this tool when you need to check symbol existence before using it. The description does not explicitly name alternative tools or conditions for when not to use it, but it does provide guidance on free vs. paid routes for high-volume usage, which is a form of usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
attester_symbol_signatureSymbol Signature (free oracle)ARead-onlyIdempotentInspect
Exact signature, structured params, docstring summary, and deprecation status for one symbol, resolved at a pinned version when given. Free: 25 calls/day per client IP, shared with the /demo/v1/* HTTP routes, reset 00:00 UTC. Higher volume: paid HTTP routes at https://attester.dev/llms.txt.
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| package | Yes | ||
| version | No | ||
| ecosystem | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, open-world, idempotent, non-destructive behavior. The description adds valuable context beyond annotations: rate limits (25 calls/day per client IP), sharing of quota with /demo/v1/* routes, reset time, and version-resolution behavior when a version is given. No contradictions 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact: two sentences with the core purpose first, then usage limits and paid upgrade path. No redundant filler, and each sentence delivers distinct information (function, quota, alternative).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The presence of an output schema covers return values, so the description focuses on purpose, quota, and version resolution. However, it omits explanations for the ecosystem/package parameters and doesn't mention any prerequisites or relationship to sibling tools. For a simple lookup tool with good annotations, this is moderately complete but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 adds meaning for 'version' ('resolved at a pinned version when given') and implies 'symbol' is the target, but it does not clarify the 'ecosystem' enum values or the 'package' parameter. This leaves half the parameters under-explained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns 'Exact signature, structured params, docstring summary, and deprecation status for one symbol', which is a specific resource and scope. It distinguishes itself from siblings (package_exists, symbol_exists, version_diff) by describing a detailed signature lookup rather than existence or diff checks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage (resolve a symbol's signature, especially with a pinned version) but does not explicitly compare against sibling tools or state when to prefer this over symbol_exists or version_diff. It provides context about rate limits and paid alternatives, but not tool-selection guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
attester_version_diffVersion Diff (free oracle)ARead-onlyIdempotentInspect
Symbol-level diff between two pinned versions of one package: added, removed, changed signatures, new deprecations, and a breaking/additive/neutral classification. Free: 25 calls/day per client IP, shared with the /demo/v1/* HTTP routes, reset 00:00 UTC. Higher volume: paid HTTP routes at https://attester.dev/llms.txt.
| Name | Required | Description | Default |
|---|---|---|---|
| package | Yes | ||
| ecosystem | Yes | ||
| to_version | Yes | ||
| from_version | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idempotent, and non-destructive behavior. The description adds valuable operational details: free quota, per-IP rate limiting, shared quota with demo routes, midnight UTC reset, and paid alternatives. This goes beyond the annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: the first sentence states the core purpose and outputs, the second provides usage constraints and a paid alternative. No unnecessary words, and important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description does not need to detail the return format, and it appropriately covers rate limits and paid routes. The description explains the diff and classification outputs, which is sufficient for an agent to decide whether to use the tool. Minor gaps like version format and explicit sibling differentiation prevent a perfect score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, so the description must compensate. It mentions 'two pinned versions of one package,' which implies from_version and to_version, but it does not explicitly define each parameter or mention the ecosystem enum. The parameter names are self-explanatory, giving some semantic help, but the description could have added more detail (e.g., version format, accepted ecosystems).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: it produces a symbol-level diff between two pinned versions of a package, listing added/removed/changed signatures, new deprecations, and a breaking/additive/neutral classification. This is specific, uses a clear verb and resource, and distinguishes itself from sibling tools that check existence or signatures rather than comparing versions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about usage constraints: free with a 25-calls/day limit shared with demo routes and a paid alternative for higher volume. However, it does not explicitly mention when to use this tool versus the sibling tools (e.g., for single-symbol lookups), leaving that to the agent to infer from the purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityAmaintenanceEnables users to look up package versions, scan for vulnerabilities, and analyze dependencies across multiple registries (npm, Maven, PyPI, etc.) using exact version recommendations for security.4MIT

EVIDIQ Lineageofficial
Alicense-qualityBmaintenanceDeterministic supply-chain provenance, SBOM/AI-BOM generation, and dependency risk analysis for npm and PyPI packages, with 14 security rules and verifiable reports.1MIT- AlicenseAqualityBmaintenanceSupply chain risk scoring for npm, PyPI, and GitHub repos82057MIT
- Alicense-qualityBmaintenanceProvides software supply-chain intelligence for AI agents, enabling them to query package metadata, versions, downloads, dependencies, and health signals for npm, PyPI, and crates.io packages without API keys.MIT
Your Connectors
Sign in to create a connector for this server.