Eia
Server Details
EIA MCP — US Energy Information Administration API v2
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pipeworx-io/mcp-eia
- GitHub Stars
- 0
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 3.8/5 across 10 of 10 tools scored. Lowest: 3.2/5.
Several tools have overlapping purposes: 'eia_series' can fetch any EIA data, making 'eia_electricity', 'eia_ethanol', 'eia_natural_gas', and 'eia_petroleum' redundant. 'ask_pipeworx' also competes with these by providing a natural language interface to the same data. 'discover_tools' is separate but adds complexity.
Most EIA-specific tools follow 'eia_<resource>' pattern, but 'ask_pipeworx' and 'discover_tools' break the convention. The memory tools ('forget', 'recall', 'remember') are consistent with each other but not with the rest.
10 tools is reasonable for an energy data server, though some could be consolidated (e.g., specific EIA tools into one parameterized tool). The memory tools seem out of scope but don't bloat the count excessively.
The server covers major energy domains (electricity, natural gas, petroleum, ethanol) but lacks other EIA data like coal, renewables, or nuclear beyond electricity. The 'ask_pipeworx' tool attempts to fill gaps but is vague. Memory tools add a separate dimension not core to energy data.
Available Tools
10 toolsask_pipeworxAInspect
Ask a question in plain English and get an answer from the best available data source. Pipeworx picks the right tool, fills the arguments, and returns the result. No need to browse tools or learn schemas — just describe what you need. Examples: "What is the US trade deficit with China?", "Look up adverse events for ozempic", "Get Apple's latest 10-K filing".
| Name | Required | Description | Default |
|---|---|---|---|
| question | Yes | Your question or request in natural language |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility. It discloses that Pipeworx 'picks the right tool, fills the arguments, and returns the result' – indicating autonomous decision-making and no direct user control over which tool is used. This is a key behavioral trait. However, it does not mention potential limitations like accuracy, latency, or the possibility of the tool failing to find a source.
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 (three sentences) and front-loaded with the core action. It includes examples for clarity. However, it could be slightly tighter – the second sentence repeats the idea of delegation already implied in the first. Still, it is efficient overall.
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 (one string parameter, no output schema), the description is fairly complete. It covers purpose, usage, and examples. A minor gap: it doesn't explain what happens if the question cannot be answered or which tools might be used. But overall, it provides sufficient context for an agent to decide when to invoke it.
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%, so the schema already documents the 'question' parameter. The description adds value by framing the parameter as natural language input and giving examples, but this is more illustrative than adding technical semantics. A 3 is appropriate as the description reinforces schema information without significantly extending it.
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 purpose: answering natural language questions by automatically selecting the best data source and filling arguments. It uses a specific verb-resource pair ('Ask a question' and 'get an answer') and distinguishes itself from siblings by acting as an orchestrator that delegates to other tools.
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 tells when to use this tool: when you want to 'just describe what you need' without browsing tools or learning schemas. It contrasts with sibling tools that are domain-specific (e.g., eia_* for energy data) by offering a general question-answering interface. Examples clarify use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
discover_toolsAInspect
Search the Pipeworx tool catalog by describing what you need. Returns the most relevant tools with names and descriptions. Call this FIRST when you have 500+ tools available and need to find the right ones for your task.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of tools to return (default 20, max 50) | |
| query | Yes | Natural language description of what you want to do (e.g., "analyze housing market trends", "look up FDA drug approvals", "find trade data between countries") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description mentions the tool returns 'the most relevant tools with names and descriptions,' but does not detail the exact behavior of the search algorithm (e.g., whether it uses semantic similarity). No annotations are provided, so the description carries the full burden. It could mention that results are ranked by relevance, but overall it gives a reasonable expectation.
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 sentences, front-loaded with the main action, and every sentence adds value. No wasted words. The examples in the input schema are also helpful but not part of the description itself.
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 that the tool has 2 parameters, no output schema, and no annotations, the description is sufficient. It explains when to use it, what it does, and how to query it. The context signals show it is a search tool, and the description covers the key aspects for an agent to use it effectively.
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 both parameters (query and limit) clearly. The description adds context by providing example queries ('analyze housing market trends'), which helps the agent formulate effective queries. However, it does not add significant new meaning 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 the tool's purpose: 'Search the Pipeworx tool catalog by describing what you need.' It specifies the action (search), the resource (tool catalog), and the method (natural language description). The sibling tools like ask_pipeworx, eia_electricity, etc. are domain-specific, while discover_tools is a meta-tool for finding other tools, so it is well-differentiated.
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: 'Call this FIRST when you have 500+ tools available and need to find the right ones for your task.' This clearly indicates it should be used before other tools to narrow down the selection. The sibling tools are specific data tools, so the agent understands this is the discovery tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
eia_electricityBInspect
Get electricity generation by fuel source, retail sales, and prices by region. Returns time series for supply and pricing data.Covers coal, natural gas, nuclear, hydro, wind, and solar generation.
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End date (optional) | |
| start | No | Start date (optional) | |
| series | Yes | Data series: "generation", "retail_sales", "prices", "state_generation" | |
| _apiKey | Yes | EIA API key | |
| frequency | No | Frequency: "monthly", "quarterly", "annual" (optional) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It mentions data types (generation, sales, prices) but does not describe side effects (none, as read-only), required permissions, rate limits, or return format. The lack of any annotations places the burden on the description, which partially meets it by listing data categories.
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: two sentences clearly stating the tool's purpose and scope. It is front-loaded with the verb 'Get' and resource 'electricity data', with a short list of example fuel types. 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?
Given the 5 parameters (2 required) and no output schema, the description covers the data categories but omits details on date format, frequency options, or response structure. It is adequate for a simple data retrieval tool but could clarify output expectations.
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 100% coverage via descriptions, so the description adds no new param info beyond listing data categories. The description's list of fuel sources and data types complements the schema's series parameter enum values, but does not add meaning beyond what the schema already 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 the tool retrieves electricity data covering generation by fuel source, retail sales, and prices. It names specific fuel types, but does not distinguish it from sibling tools like eia_natural_gas or eia_ethanol, which likely have similar scope for different energy types.
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 is provided on when to use this tool vs alternatives like eia_series (general series query) or sibling fuel-specific tools. The description implies it is for electricity data but does not explain when to prefer this over other EIA tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
eia_ethanolAInspect
Get fuel ethanol production volumes, stocks, and imports. Returns time series for ethanol supply chain metrics.Key energy-agriculture intersection: most US ethanol is made from corn. Uses EIA petroleum supply data filtered for ethanol (EPOOXE product code).
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End date (optional) | |
| start | No | Start date (optional) | |
| series | Yes | Ethanol data type: "production", "stocks", "imports" | |
| _apiKey | Yes | EIA API key | |
| frequency | No | Frequency: "weekly", "monthly" (optional, defaults to weekly) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description partially covers behavioral aspects by explaining the data source (EIA petroleum supply filtered for ethanol) and product code (EPOOXE). However, it does not disclose rate limits, authentication requirements, or any destructive operations.
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, front-loaded with the main purpose, and every sentence adds value. No fluff or repetition.
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 moderate complexity (5 parameters, no output schema, no annotations), the description provides enough context to use the tool effectively. It explains the data origin and key series values, which compensates for the lack of output schema and annotations.
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 baseline is 3. The description adds context about the series parameter values (production, stocks, imports) and mentions frequency defaults, but does not elaborate on date format or API key usage 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 the tool retrieves fuel ethanol data covering production volumes, stock levels, and imports. It distinguishes itself from other EIA tools by specifying the focus on ethanol and the underlying EIA petroleum supply data.
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 the tool is for ethanol-specific data but does not explicitly state when to use it over siblings like eia_petroleum or eia_series. No alternatives or exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
eia_natural_gasAInspect
Get natural gas prices, production, consumption, and storage by US region. Returns time series for supply, demand, and inventory metrics.Includes Henry Hub spot prices, underground storage, marketed production, and consumption by sector.
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End date (optional) | |
| start | No | Start date (optional) | |
| series | Yes | Data series: "prices", "production", "consumption", "storage", "spot_prices" | |
| _apiKey | Yes | EIA API key | |
| frequency | No | Frequency: "weekly", "monthly", "annual" (optional) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description must carry behavioral transparency. It lists output categories (prices, production, etc.) but does not disclose whether data is read-only, any rate limits, or how the API key is used. No destructive behavior is implied, so a neutral score is fair.
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, front-loaded with purpose and concrete examples. No fluff; every phrase adds 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?
Given the moderate complexity (5 parameters, no output schema, no nested objects), the description adequately covers the tool's purpose and data types. It lacks explicit return format info, but the listed categories suffice for an agent to decide. Slightly more detail on date format or frequency could improve, but not necessary.
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 baseline is 3. The description adds context by listing example series values and mentioning specific data types (Henry Hub), but does not elaborate on start/end date format, frequency options, or _apiKey usage 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?
Clearly states the tool returns natural gas data and enumerates specific data types (prices, production, consumption, storage) with examples (Henry Hub spot prices, underground storage). This distinctively positions it against siblings like eia_electricity or eia_petroleum.
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 accessing natural gas metrics, but does not explicitly contrast with siblings like eia_series (which might offer different aggregation) or advise when not to use it. No guidance on required API key setup or series selection constraints.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
eia_petroleumAInspect
Get petroleum prices (gasoline, diesel, crude oil) and stock levels by region. Returns time series with prices, volumes, and regional breakdowns.supply, production, and imports. Simplified interface to common EIA petroleum series.
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End date (optional) | |
| start | No | Start date (optional) | |
| _apiKey | Yes | EIA API key | |
| product | Yes | Product type: "gasoline", "diesel", "crude", "stocks", "supply", "production", "imports" | |
| frequency | No | Frequency: "weekly", "monthly", "annual" (optional, defaults vary by product) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool fetches data and lists the product types, which is useful. However, it does not mention any behavioral traits such as rate limits, authentication requirements beyond the API key, or the structure of the response. It also does not clarify default behaviors like default frequency or date ranges.
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 sentences long, front-loads the main action and resource, and lists the categories efficiently. Every sentence is informative and there is no unnecessary text.
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 tool has 5 parameters with 100% schema coverage, no output schema, and no annotations. The description covers the core purpose and product types but lacks details on response format, error handling, or behavior with optional parameters. Given the moderate complexity, the description is adequate but not comprehensive.
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 schema has 100% description coverage, so the baseline is 3. The description adds value by summarizing the overall purpose and listing the product categories, but it does not explain the 'end' and 'start' date parameters or the 'frequency' parameter beyond what the schema already provides. Since the schema already describes each parameter well, the description's additional context is limited but not redundant.
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 uses a specific verb ('Get') and clearly identifies the resource ('petroleum/fuel data') with a comprehensive list of sub-categories (gasoline prices, diesel prices, etc.). It also distinguishes itself from siblings by stating it is a 'simplified interface to common EIA petroleum series,' which contrasts with other EIA tools for electricity, ethanol, natural gas, and the more general eia_series.
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 by stating it's a 'simplified interface to common EIA petroleum series,' suggesting it is for common queries rather than all series. However, it does not explicitly state when to use this tool versus eia_series or other siblings, nor does it mention when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
eia_seriesBInspect
Search EIA for any energy data series by route path. Returns historical data points with timestamps and values. Use for specific energy metrics not covered by category tools.(e.g., "petroleum/pri/gnd" for gasoline prices, "natural-gas/pri/sum" for gas prices, "electricity/retail-sales" for electricity, "total-energy/data" for total energy). Returns time series with period, value, and metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End date (optional) | |
| limit | No | Max records to return (default: 12, max: 5000) | |
| route | Yes | EIA data route path. Common routes: "petroleum/pri/gnd" (gasoline/diesel prices), "petroleum/pri/spt" (crude oil spot prices), "petroleum/stoc/wstk" (petroleum stocks), "petroleum/sum/sndw" (petroleum supply/demand weekly), "natural-gas/pri/sum" (natural gas prices), "natural-gas/stor/sum" (natural gas storage), "electricity/retail-sales" (electricity sales/prices), "total-energy/data" (total energy overview), "coal/shipments" (coal data) | |
| start | No | Start date, e.g., "2023-01" for monthly, "2023" for annual (optional) | |
| _apiKey | Yes | EIA API key (free from eia.gov) | |
| frequency | No | Data frequency: "weekly", "monthly", "quarterly", "annual" (optional) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description carries the burden. It states the tool returns time series with period, value, and metadata, but does not disclose if it is read-only, destructive, or requires authentication beyond the API key. The description is adequate but not detailed.
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 reasonably concise, providing essential information in a few sentences. It front-loads the purpose and includes examples, though it could be slightly more succinct.
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 complexity of a generic data retrieval tool and the lack of output schema, the description provides basic completeness. It explains the route structure and return format, but could include more details about common use cases 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 description coverage is 100%, so the baseline is 3. The description adds examples of route paths but does not elaborate on the meaning of parameters beyond the schema's 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 retrieves EIA time series data by route path, and provides multiple examples of route paths. However, it does not differentiate this tool from sibling tools like eia_petroleum, eia_natural_gas, etc., which may have overlapping functionality.
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 any EIA time series data via route paths, but does not specify when to use this generic tool versus the more specific sibling tools (e.g., eia_petroleum). There is no guidance on when not to use it or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
forgetBInspect
Delete a stored memory by key.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Memory key to delete |
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 correctly indicates destructive behavior ('Delete'), but lacks details on confirmation, reversibility, or side effects. 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?
Single sentence with zero waste. Clear and front-loaded action word.
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 simple schema (1 param, no output schema, no enums) and no annotations, the description is adequate but could specify whether the key must exist or if deletion fails silently.
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% (only one parameter 'key' is described in schema). Description adds no extra meaning beyond schema, 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 states verb 'Delete' and resource 'a stored memory by key', clearly indicating the tool's action and target. It distinguishes from sibling tools like 'recall' and 'remember'.
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., 'remember' for storing, 'recall' for retrieval). Context is implied but no explicit exclusions or alternative naming.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recallAInspect
Retrieve a previously stored memory by key, or list all stored memories (omit key). Use this to retrieve context you saved earlier in the session or in previous sessions.
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Memory key to retrieve (omit to list all keys) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool retrieves or lists memories, but does not mention whether retrieval is read-only, any limitations on session persistence, or error handling for missing keys.
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, two sentences with no wasted words. It front-loads the primary action and follows with usage guidance.
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 is simple with one optional parameter and no output schema, the description is fairly complete. However, it lacks information about return format, error cases (e.g., key not found), and scope of session persistence.
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 already describes the parameter 'key' with a description. The description adds context that omitting the key lists all memories, which is useful but the schema already covers the parameter's purpose. Schema coverage is 100%, so baseline is 3.
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 a memory by key or lists all memories when key is omitted. It distinguishes from 'remember' (store) and 'forget' (delete), but does not explicitly differentiate from other sibling tools.
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 guidance on when to use the tool (to retrieve context saved earlier) and when to omit the key (to list all). However, it does not explicitly mention when not to use it or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rememberAInspect
Store a key-value pair in your session memory. Use this to save intermediate findings, user preferences, or context across tool calls. Authenticated users get persistent memory; anonymous sessions last 24 hours.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Memory key (e.g., "subject_property", "target_ticker", "user_preference") | |
| value | Yes | Value to store (any text — findings, addresses, preferences, notes) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Discloses memory persistence difference between authenticated users (persistent) and anonymous sessions (24 hours). This adds behavioral context beyond the schema.
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 concise sentences with no wasted words. Front-loaded with action, then usage context, then behavioral note. Every sentence adds 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?
Given the simplicity of the tool (2 required string params, no output schema), the description is largely complete. It covers purpose, usage, and behavior. A minor gap: does not mention that the value is overwritten if the key already exists, which is implied but not explicit.
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 baseline is 3. The description does not add additional meaning beyond what the schema already provides for key and value. The examples in the schema ('subject_property', etc.) already give context.
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 'Store a key-value pair in your session memory' with specific verb (store) and resource (session memory). Distinguishes from siblings like 'recall' and 'forget' by focusing on writing to memory.
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 says 'Use this to save intermediate findings, user preferences, or context across tool calls', providing clear context for use. However, does not mention when not to use or alternatives among siblings.
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!