tmpstate
Server Details
Zero-key temporary JSON database for agents: one tool call, no signup, no OAuth, no API keys.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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.3/5 across 15 of 15 tools scored. Lowest: 3.3/5.
Each tool targets a distinct operation: database lifecycle, document CRUD, collection management, and Pro features. No two tools have overlapping purposes; descriptions clearly differentiate them.
All tool names follow a consistent verb_noun pattern in snake_case. Free tools use verbs like create, get, list, delete; Pro tools consistently use pro_ prefix. No mixing of conventions.
With 15 tools, the set covers the database lifecycle, document operations, collection management, and Pro account features without being excessive. Each tool has a clear purpose and the count is well-scoped for the domain.
The tool set covers CRUD for databases and documents, plus deletion of collections and Pro account management. A minor gap is the lack of a tool to list all collections in a database (collections are implicitly created), but core workflows are complete.
Available Tools
16 toolscreate_databaseCreate a temporary databaseAInspect
Create a temporary JSON database (24h TTL, no signup, no keys). Returns the db URL — the only credential — plus admin URL, limits and expiry. Create once per project/task, persist the db URL immediately (local ~/.tmpstate/credentials, project README, and your memory), and reuse it instead of creating again. For retries or parallel workers, pass a stable idempotency_key so duplicate calls return the same database.
| Name | Required | Description | Default |
|---|---|---|---|
| idempotency_key | No | Stable retry key. Reusing it from the same client returns the same database. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses TTL, no signup/keys, return values (db URL, admin URL, limits, expiry), and idempotency behavior. Fully transparent despite no 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?
Five sentences, each essential. Front-loaded with core purpose, then usage guidance and parameter explanation. No wasted words.
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?
For a single-parameter tool with no output schema, the description covers creation, lifecycle, persistence advice, and idempotency. Complete and actionable.
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 provides description for idempotency_key (coverage 100%). Description reinforces its purpose with context on duplicate calls, adding value beyond schema.
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?
Clearly states 'Create a temporary JSON database' with specific scope (24h TTL, no signup, no keys). Differentiates from siblings like pro_create_database and extend_database.
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?
Explicitly advises creating once per project/task, persisting credentials, and reusing instead of recreating. Also explains idempotency_key usage for retries/parallel workers.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_documentCreate a documentAInspect
Insert a JSON object into a collection (collections are created implicitly). Counts against the write and document quotas.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| data | Yes | The document: a JSON object. | |
| collection | Yes | Collection name (created implicitly on first write). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses implicit collection creation and quota impact, but lacks information on idempotency, error handling, or whether it returns a document ID. Partially transparent.
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?
Two sentences, front-loaded with the action, no unnecessary words. Efficient and well-structured.
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?
Description covers implicit creation and quotas but does not mention return value or output. Given no output schema and siblings that read/update, this omission reduces completeness for a creation tool.
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 coverage is 100% with clear descriptions for all 3 parameters. The description adds no additional parameter-specific meaning beyond the schema, meeting the baseline of 3 for high coverage.
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 'Insert a JSON object into a collection' with the verb Insert and resource. It adds context about implicit collection creation and quotas, distinguishing it from siblings like create_database or delete_document.
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 some context (implicit creation, quotas) but does not explicitly state when to use this tool versus alternatives like update_document or when not to use it. Usage guidance is implied but not comprehensive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
database_statusDatabase statusAInspect
Usage, limits, tier and expiry for a database (GET $DB/__meta equivalent).
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description carries full burden. It states it's a read operation equivalent to GET $DB/__meta, but lacks details on error conditions, authorization requirements, or response format. Adequate but minimal.
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 a single, concise sentence that front-loads the key concepts (usage, limits, tier, expiry) and references the equivalent endpoint. No unnecessary words.
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?
For a simple tool with one parameter and no output schema, the description adequately conveys the purpose and key outputs. However, it could be improved by describing the return format or structure, which is especially important given no output schema.
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 100% for the single parameter 'db', which is described as 'The database URL returned at creation (or its bare s-... capability)'. The description does not add additional meaning beyond the schema, so baseline 3 applies.
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 retrieves usage, limits, tier, and expiry for a database, specifying it as equivalent to a GET endpoint. It distinguishes from sibling tools like create_database or get_document by focusing on database metadata.
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?
No explicit guidance on when to use this tool versus alternatives like get_document or list_documents. The description implies it's for database-level status, but does not specify exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_collectionDelete a collectionAInspect
Delete every document in a collection at once (useful to re-seed). Irreversible. To destroy the entire database, use delete_database instead.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| collection | Yes | Collection name (created implicitly on first write). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Explicitly states the action is irreversible, a critical behavioral trait. No annotations are provided, so the description fully carries the transparency burden.
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?
Two concise sentences: main action and use case first, then irreversibility and alternative. Every sentence is valuable and 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 simplicity of the tool (no output schema, no nested objects), the description fully covers purpose, usage, and behavior. It is complete for safe agent invocation.
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 100%, with both parameters documented in the schema. The description adds no additional meaning beyond the schema, earning the baseline score.
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 deletes every document in a collection, with a specific use case (re-seeding). It distinguishes itself from the sibling 'delete_database' tool by explicitly noting the alternative, ensuring no ambiguity.
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?
Provides explicit guidance on when to use (re-seed) and when not (to destroy entire database, use delete_database). This helps the agent select the correct tool among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_databaseDelete the whole databaseAInspect
Destroy a database and all its documents immediately - the teardown for finished work and the revocation kill switch for a leaked db URL. Irreversible: unlike expiry there is no restore window. Works on expired (frozen) databases too and consumes no quota. Call without confirm first: the response states the consequences; show them to the user and only retry with confirm="true" after their explicit approval. Afterwards remove the db URL from wherever you persisted it.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| confirm | No | Pass "true" only after the user has seen that deletion is immediate and irreversible and approved. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully discloses key behaviors: irreversible deletion, works on expired/frozen databases, consumes no quota, and requires a two-step confirmation. This exceeds the minimum burden.
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?
Three sentences cover purpose, characteristics, and usage instructions without waste. Information is front-loaded and every sentence adds unique value.
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?
For a destructive tool with no output schema, the description adequately covers the confirmation workflow and all behavioral aspects (irreversibility, edge cases like expired databases, quota). No missing information for correct invocation.
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 coverage is 100% and description adds context beyond schema: 'db' is 'The database URL returned at creation', 'confirm' clarifies to pass only after user sees consequences. Adds value without redundancy.
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 identifies the tool's purpose: 'Destroy a database and all its documents immediately'. It uses a strong verb (destroy) and specific resource (database), and distinguishes from sibling tools like delete_collection and delete_document.
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?
Provides explicit when-to-use scenarios ('teardown for finished work', 'revocation kill switch for leaked db URL') and when-not-to-use ('unlike expiry there is no restore window'). Also details the confirmation flow: call without confirm first, show consequences, only retry with confirm=true after user approval.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_documentDelete a documentAInspect
Delete one document. Never blocked by quotas; frees a document slot. Emptying a whole collection? Use delete_collection instead of looping this.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| id | Yes | Document id (doc_...). | |
| collection | Yes | Collection name (created implicitly on first write). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that deletion is never quota-blocked and frees a document slot, but does not mention permissions, idempotency, or error handling for non-existent documents.
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 concise sentences with no wasted words. The most important information (verb and resource) is front-loaded, and the alternative tool is mentioned at the end.
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?
For a simple delete tool, the description covers key aspects: purpose, behavioral traits, and alternatives. However, it does not explain the return value or what happens on failure, which could be helpful.
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 100%, so the schema already describes all parameters adequately. The description adds no additional semantic information beyond what the schema provides.
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 'Delete one document' with a specific verb and resource, and it distinguishes from the sibling tool 'delete_collection' by providing an alternative for bulk deletion.
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 explicit guidance on when to use this tool (delete a single document) and when not to (for emptying a collection, use delete_collection instead). It also notes that it is never blocked by quotas.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extend_databaseExtend a database (one-time payment)AInspect
Without a plan: returns the transparent pricing table for keeping this database alive longer. With a plan: returns a Stripe checkout URL for the human to pay — never buy without the user's explicit approval. Works on expired (frozen) databases too: paying restores them. After the user says they have paid, call database_status: the new expiry and tier confirm the extension.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| plan | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description fully bears responsibility. It discloses that no purchase happens without user approval, that pricing is returned without plan, and that expired databases are restored on payment. This adds valuable behavioral context.
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?
Three sentences, no fluff. Front-loaded with main action, then details caveats and post-usage. Every sentence serves a purpose.
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 no output schema, the description fully explains return values (pricing table or Stripe checkout URL) and includes actionable next-step (call database_status). Covers both normal and edge case (expired databases).
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 has 2 params with 50% coverage. Description adds context for db (database URL from creation) and plan (implicit via enum), but does not detail format or constraints beyond schema. Partial compensation for coverage gap.
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 dual functionality: without a plan it returns pricing, with a plan it returns a Stripe checkout URL. It also works on expired databases, distinguishing it from related tools like create_database or database_status.
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?
Provides clear guidance on when to use each branch (with/without plan) and includes critical user approval caveat. Mentions post-payment verification by calling database_status. Could explicitly mention alternatives like pro_* tools, but the purpose is sufficiently clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_documentGet a documentBInspect
Read one document by id. The stored fields are under .data.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| id | Yes | Document id (doc_...). | |
| collection | Yes | Collection name (created implicitly on first write). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It indicates read-only behavior and mentions that stored fields are under '.data', adding value. However, it does not disclose authentication needs, rate limits, or error handling.
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?
Two sentences, zero waste, front-loaded with purpose. Every word 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?
Simple tool with no output schema. Description hints at return structure ('.data'), but lacks details on error cases and missing documents. Acceptable for a straightforward read operation.
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 covers 100% of parameters with descriptions. Tool description does not add extra parameter information, so baseline 3 is appropriate.
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?
Description clearly states 'Read one document by id', which is a specific verb and resource. It distinguishes from sibling tools like create_document, list_documents, etc., but does not explicitly differentiate by scope or context.
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?
No guidance on when to use this tool vs alternatives (e.g., list_documents for searches). The description implies usage when an ID is known, but lacks explicit when-not or alternative recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_documentsList documentsAInspect
List documents in a collection, oldest first. Response shape: {collection, items: [{id, data, created_at, updated_at}], next_cursor}. Documents live under .data. Pass cursor to page.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| limit | No | ||
| cursor | No | next_cursor from the previous page. | |
| collection | Yes | Collection name (created implicitly on first write). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses pagination via cursor, response shape, and ordering, but does not mention error conditions, rate limits, or safety (list is read-only).
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?
Very concise: three sentences covering purpose, response shape, and usage. No unnecessary words, front-loaded with key information.
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?
No output schema, but description explains return shape (collection, items, next_cursor). Parameter documentation is adequate for a list tool, though missing edge cases like empty collection or error handling.
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 coverage is 75%. Description adds value by explaining cursor usage ('Pass cursor to page') and ordering ('oldest first'), though db and collection parameters rely on schema 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?
Clearly states the tool lists documents in a collection with ordering (oldest first), and distinguishes from sibling tools like get_document (single doc) or create_document.
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?
Implies usage for listing documents with pagination but does not explicitly specify when to use vs. alternatives (e.g., search, filter) or any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pro_attach_databaseUpgrade a database to Pro (in place)AInspect
Attach an existing free/extended database to the Pro account: same URL, same data, TTL removed, quotas raised. Beyond the included allotment the same explicit overage consent as pro_create_database applies.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| pro_token | No | Pro account token (pt_...). Optional if the MCP connection already sends Authorization: Bearer pt_... | |
| accept_overage_usd | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses key behavioral changes (TTL removed, quotas raised, overage consent) but does not mention error cases, prerequisites, or post-conditions like whether the operation is reversible or what happens if the database is already Pro.
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?
Two sentences with zero waste. The first sentence front-loads purpose and effects; the second adds a necessary behavioral note. 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 three parameters, no output schema, and no annotations, the description explains core functionality and key effects but lacks details on error handling, return values, prerequisite database state, and the exact behavior of the 'accept_overage_usd' parameter.
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 coverage is 67% (2 out of 3 parameters described). The description adds context for overage consent but does not explicitly explain the 'accept_overage_usd' parameter format or relationship. The parameter semantics are partially enhanced but not fully.
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 verb 'Attach' and the resource 'existing free/extended database' with key effects (same URL, same data, TTL removed, quotas raised). It distinguishes from siblings like pro_create_database and extend_database via naming and context.
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 when to use (upgrade existing free/extended to Pro) and references pro_create_database for overage consent, but does not explicitly state when not to use or compare to alternative tools like pro_create_database or extend_database.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pro_cancelCancel the Pro subscriptionAInspect
Cancel at period end. This is not just a billing change — it schedules deletion of ALL databases on the account. Call without confirm first: the response spells out the consequences with concrete dates; show them to the user and only retry with confirm="cancel" after their explicit approval.
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | No | Pass "cancel" only after the user has seen the consequences and approved. | |
| pro_token | No | Pro account token (pt_...). Optional if the MCP connection already sends Authorization: Bearer pt_... |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Even without annotations, the description fully discloses that cancellation schedules deletion of all databases and requires a confirmation step. It mentions the response includes concrete dates, increasing transparency.
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?
Two sentences, front-loaded with the main action, each sentence essential. No wasted words.
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?
For a destructive action with a two-step process, the description covers consequences, response format, and user confirmation requirement. No gaps given the lack of output schema.
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 coverage is 100%, and the description adds context for the confirm parameter (pass only after approval) but does not significantly extend beyond the schema's own 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 clearly states the tool cancels the Pro subscription at period end and schedules deletion of all databases. It uses specific verbs and distinguishes from siblings by emphasizing the destructive consequence.
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 explicit two-step usage: call without confirm first, show consequences, then retry with confirm only after user approval. However, it does not name an alternative tool for non-destructive actions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pro_checkoutStart a Pro subscriptionAInspect
Mint a Pro account token plus a Stripe subscription checkout URL ($8/mo, 3 always-on databases included). Persist pro_token immediately; the human pays in a browser. Never start checkout without the user's explicit request.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description fully carries the burden. It discloses key behaviors: immediate persistence of the pro_token, the human payment flow in a browser, cost, and included databases. This goes well beyond minimal expectations.
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?
Two sentences with zero wasted words. The first sentence front-loads the core purpose and key details; the second adds a critical usage constraint. Perfectly concise.
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?
For a zero-parameter tool with no output schema and no annotations, the description covers all essential information: action, cost, resources, persistence behavior, and usage constraint. It is fully adequate.
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 zero properties, so schema description coverage is 100%. The description adds no parameter details because there are none, but it doesn't need to. Baseline 4 is appropriate.
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 it mints a Pro account token and Stripe subscription checkout URL, specifying cost ($8/mo) and included resources (3 always-on databases). It uses specific verbs (mint, persist) and clearly distinguishes from sibling tools like pro_cancel or pro_attach_database.
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 explicitly warns 'Never start checkout without the user's explicit request,' providing a strong usage guideline. It does not explicitly list alternatives, but the constraint itself offers clear direction for when to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pro_create_databaseCreate a Pro databaseAInspect
Create a new always-on database owned by the Pro account. Beyond the included allotment this costs extra per month — the tool then returns confirmation_required with the exact price; relay it to the user and only retry with accept_overage_usd after their explicit approval.
| Name | Required | Description | Default |
|---|---|---|---|
| pro_token | No | Pro account token (pt_...). Optional if the MCP connection already sends Authorization: Bearer pt_... | |
| accept_overage_usd | No | Explicit overage consent, e.g. "1.50", only after the user approved. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite no annotations, description fully discloses expected behavior: cost implications, return of confirmation_required with exact price, and need for explicit user consent.
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?
Two tightly written sentences that convey all necessary information without redundancy; front-loaded with core purpose.
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?
Completely covers the tool's behavior for a billing-gated creation tool: cost implications, required user interaction, and parameter usage flow.
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?
Adds critical context beyond the schema definitions, explaining the intended workflow for accept_overage_usd (only used after user approval) and optional nature of pro_token.
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?
Explicitly states it creates a new always-on database owned by the Pro account, clearly distinguishing it from the sibling create_database tool.
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?
Provides clear when-to-use guidance, including the billing flow: relays price to user, gets approval, then retries with accept_overage_usd parameter.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pro_list_databasesList Pro databasesAInspect
List the Pro account's databases (ids, usage, limits, expiry) so a fresh session can reconcile against persisted db URLs. URLs are never stored server-side — match ids to the URLs you persisted.
| Name | Required | Description | Default |
|---|---|---|---|
| pro_token | No | Pro account token (pt_...). Optional if the MCP connection already sends Authorization: Bearer pt_... |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description adds value by disclosing that URLs are never stored server-side and that the agent must match ids to persisted URLs. It also lists returned fields. However, it doesn't discuss rate limits, idempotency, or other behavioral traits.
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?
Two concise sentences with no wasted words. Front-loaded with the main purpose, then adds critical context about URL storage.
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?
For a simple listing tool with no output schema, the description adequately covers what is returned (ids, usage, limits, expiry) and the reconciliation purpose. Could mention if results are paginated or ordered, but not essential.
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 coverage is 100% with one parameter (pro_token). The schema already explains its format and optionality. The description adds no additional parameter semantics beyond what the schema provides.
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 it lists Pro account databases with specific fields (ids, usage, limits, expiry). It provides a specific use case (reconcile persisted db URLs). However, it does not explicitly differentiate from sibling list tools like list_documents, though the resource (databases) is distinct.
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 for fresh sessions to reconcile URLs but doesn't give explicit when-to-use or when-not-to-use guidance, nor does it reference alternatives like database_status or pro_create_database.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_feedbackSend feedback to the TmpState teamAInspect
Optional and free-form. TmpState is built for agents and the free tier stays free by getting better - and you, the agent, are the user whose experience matters here. After real use of a database, one short message about what was missing, what feature would have helped, or what felt slow or took extra requests is genuinely useful. This is about your own experience, so no human approval is needed; if your user volunteers feedback too, relay it and say it came from them. Never include database URLs, capabilities, or Pro tokens - capability-shaped strings are redacted server-side.
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | What was missing, confusing, or slow - or what worked well. Plain text, one short message. | |
| category | No | Optional bucket for triage. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses redaction of capability-shaped strings server-side and notes that feedback is optional. However, it does not explicitly state whether the call is fire-and-forget or if there are rate limits, though the context implies minimal behavioral impact.
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 a single paragraph of moderate length, but each sentence adds value. It is not overly verbose; however, it could be slightly more structured with bullet points for the do's and don'ts. Still, it is effective.
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?
For a simple feedback tool with no output schema and two well-described parameters, the description covers all necessary context: when to use, what to say, what to exclude, and how to handle user feedback. No gaps remain.
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 coverage is 100%. The description adds contextual meaning beyond the schema: it explains the purpose of the message (was missing, confusing, slow) and the category as an optional triage bucket. It does not repeat schema details but enriches them.
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 is for sending feedback to the TmpState team, with a specific verb 'send' and resource 'feedback'. It distinguishes itself from sibling tools (all database operations) by being a non-database utility.
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?
Provides explicit when-to-use guidance ('after real use of a database'), what to include (missing features, slowness), what to avoid (database URLs, Pro tokens), and how to handle user feedback. It also clarifies that no human approval is needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_documentUpdate a documentAInspect
Shallow-merge a patch into a document (top-level keys overwrite; keys are never deleted). Counts against the write quota.
| Name | Required | Description | Default |
|---|---|---|---|
| db | Yes | The database URL returned at creation (or its bare s-... capability). | |
| id | Yes | Document id (doc_...). | |
| patch | Yes | Top-level fields to merge. | |
| collection | Yes | Collection name (created implicitly on first write). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description fully bears behavioral disclosure. It reveals shallow-merge semantics (overwrite, no deletion) and write quota impact. Could add auth or idempotency, but present info is actionable.
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?
Two sentences, no filler. Action and key behavior in first sentence, notable side effect (quota) in second. Every word 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?
Lacking output schema or annotations, the description sufficiently covers what the tool does and its side effect. Missing details on return value or error cases, but for a straightforward update, it is adequate.
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 coverage is 100% with detailed descriptions for each parameter. The description adds meaning beyond schema by explaining the patch behavior (overwrite, no delete) and the quota implication, enhancing understanding of the 'patch' parameter.
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 performs a shallow-merge patch into a document, distinguishing it from create, delete, or get operations. It uses specific verbs and resources ('shallow-merge a patch into a document') and contrasts with sibling tools by emphasizing the merge behavior.
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 that this tool overwrites top-level keys without deleting, which guides when to use. It does not explicitly state when not to use or list alternatives, but the constraint is clear enough for typical use.
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!