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
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 | ||
TDQS
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 | ||
TDQS
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 | ||
TDQS
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 | ||
TDQS
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.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Supply chain risk scoring for npm, PyPI, Cargo, and Go. 9 tools. Behavioral signals.
check-package: block malicious npm/PyPI deps before your AI agent installs them. Free, no key.
Package intelligence for AI agents across npm, PyPI, crates.io and deps.dev. No API keys.
Generate SBOMs, scan vulnerabilities, and analyze dependencies from local projects or Git repos.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables 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
AlicenseNot gradedqualityBmaintenanceDeterministic supply-chain provenance, SBOM/AI-BOM generation, and dependency risk analysis for npm and PyPI packages, with 14 security rules and verifiable reports.1MIT- AlicenseNot gradedqualityBmaintenanceEnables AI coding agents to identify exactly what broke between two dependency versions, with citations for every claim, and to verify package existence to catch typosquatting, all without requiring an API key.MIT
- AlicenseAqualityBmaintenanceSupply chain risk scoring for npm, PyPI, and GitHub repos81067MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.