Hud
Server Details
HUD MCP — U.S. Department of Housing and Urban Development APIs.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pipeworx-io/mcp-hud
- 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 4.1/5 across 14 of 14 tools scored. Lowest: 3.4/5.
Each tool has a clearly distinct purpose: HUD-specific tools (e.g., hud_fair_market_rents, hud_income_limits) handle separate data domains, while generic Pipeworx tools (ask_pipeworx, compare_entities, etc.) cover meta-operations like query, comparison, and memory. No two tools have overlapping functionality.
Naming patterns are mixed: HUD tools use a 'hud_' prefix with mostly noun bases (hud_chas, hud_crosswalk), while Pipeworx tools use verb_noun (compare_entities, resolve_entity) or bare verbs (forget, recall). This inconsistency, though readable, lacks a single coherent convention.
With 14 tools, the count is reasonable. The server includes both domain-specific HUD tools and generic infrastructure tools (memory, feedback), which slightly expands the scope but remains manageable and not excessive.
The HUD-specific tools cover basic affordability, geography, and income data, but lack tools for specific programs (e.g., Section 8, public housing) or deeper demographic queries. The generic tools fill some gaps but don't fully round out a comprehensive HUD toolkit.
Available Tools
16 toolsask_pipeworxARead-onlyInspect
PREFER OVER WEB SEARCH for questions about current or historical data: SEC filings, FDA drug data, FRED/BLS economic statistics, government records, USPTO patents, ATTOM real estate, weather, clinical trials, news, stocks, crypto, sports, academic papers, or anything requiring authoritative structured data with citations. Routes the question to the right one of 1,423+ tools across 392+ verified sources, fills arguments, returns the structured answer with stable pipeworx:// citation URIs. Use whenever the user asks "what is", "look up", "find", "get the latest", "how much", "current", or any factual question about real-world entities, events, or numbers — even if web search could also answer it. Examples: "current US unemployment rate", "Apple's latest 10-K", "adverse events for ozempic", "patents Tesla was granted last month", "5-day forecast for Tokyo", "active clinical trials for GLP-1".
| 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?
The description discloses that the tool internally selects the right tool and fills arguments, abstracting complexity. No annotations are provided, so the description carries full burden. It clearly states behavior: it returns an answer from the best data source without needing to browse tools or schemas.
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, with three sentences plus examples. It front-loads the core purpose and provides useful examples. No unnecessary words, though the examples could be more 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?
Given the tool's single parameter and no output schema, the description adequately covers its purpose and behavior. It explains what the tool does internally (routing) and provides examples. For a tool of this complexity, the description is nearly complete; it could mention limitations (e.g., scope of data sources) but is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds value by explaining the question parameter as 'your question or request in natural language,' which aligns with the schema description. With 100% schema description coverage, the baseline is 3. The description does not add further detail beyond examples, but the examples enrich the semantic understanding.
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 accepts natural language questions and returns answers, using the best available data source. It distinguishes itself from sibling tools by acting as an intelligent router, unlike specific data lookup tools (e.g., hud_fair_market_rents). Examples make the purpose concrete.
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 advises users to 'just describe what you need' and provides example questions, implying when to use this tool (for any data question in plain English). It does not explicitly state when not to use it or mention alternatives, but the context suggests this is the go-to tool for natural language queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compare_entitiesARead-onlyInspect
Compare 2–5 companies (or drugs) side by side in one call. Use when a user says "compare X and Y", "X vs Y", "how do X, Y, Z stack up", "which is bigger", or wants tables/rankings of revenue / net income / cash / debt across companies — or adverse events / approvals / trials across drugs. type="company": pulls revenue, net income, cash, long-term debt from SEC EDGAR/XBRL for tickers like AAPL, MSFT, GOOGL. type="drug": pulls adverse-event report counts (FAERS), FDA approval counts, active trial counts. Returns paired data + pipeworx:// citation URIs. Replaces 8–15 sequential agent calls.
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Entity type: "company" or "drug". | |
| values | Yes | For company: 2–5 tickers/CIKs (e.g., ["AAPL","MSFT"]). For drug: 2–5 names (e.g., ["ozempic","mounjaro"]). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explains that data for 'company' type comes from SEC EDGAR and for 'drug' type from adverse event/fDA trial counts, and that it returns paired data with URIs. It does not disclose potential side effects (e.g., rate limits, authentication requirements) but these are typical for a read-only comparison tool. Without annotations, the description carries moderate 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?
The description is three sentences long, front-loaded with the primary action ('Compare 2–5 entities side by side'), then detailing output per type, and finally a performance claim. It is efficient and well-structured, though slightly more brevity could be achieved.
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 a tool with no output schema, the description adequately explains return values (paired data + URIs). It covers both entity types and their respective fields. However, it does not mention pagination, error behavior, or data recency, which would be useful for a data-rich comparison 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?
The input schema already provides detailed descriptions for both parameters (type enum and values array with examples), achieving 100% schema coverage. The description adds extra context by explaining what fields are compared per type, which complements the schema but does not significantly increase meaning beyond 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 verb 'Compare' and the resource '2–5 entities', specifying the two entity types (company, drug) with distinct fields. It distinguishes itself from sibling tools (e.g., HUD tools, memory tools) by focusing on cross-referencing external data sources.
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 comparing multiple entities ('Compare 2–5 entities side by side') and claims efficiency ('Replaces 8–15 sequential agent calls'). However, it does not explicitly state when not to use it (e.g., for single entities) or provide alternative tools that might be better for other comparison tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
discover_toolsARead-onlyInspect
Find tools by describing the data or task. Use when you need to browse, search, look up, or discover what tools exist for: SEC filings, financials, revenue, profit, FDA drugs, adverse events, FRED economic data, Census demographics, BLS jobs/unemployment/inflation, ATTOM real estate, ClinicalTrials, USPTO patents, weather, news, crypto, stocks. Returns the top-N most relevant tools with names + descriptions. Call this FIRST when you have many tools available and want to see the option set (not just one answer).
| 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 explains that it returns the most relevant tools with names and descriptions, which is a clear behavioral trait. No annotations are provided, so the description carries the full burden. It could add detail about whether the search is semantic or keyword-based, but it is sufficiently transparent for a search tool.
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, all front-loaded with the action verb 'Search'. Every sentence adds value: purpose, output, and when to use. No waste.
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 (search, two params, no output schema), the description is complete enough. It explains what the tool does and when to use it. Could mention that it returns results with names and descriptions, which it does. No output schema, so return values are not documented but are implied.
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 has high coverage (100%) with descriptions for both parameters. The description adds context that 'query' should be a natural language description, reinforcing the schema's description. It does not add new semantics beyond the schema, but it aligns well.
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: to search the tool catalog by describing what you need, returning relevant tools with names and descriptions. It uses specific verbs ('search', 'call this first') and distinguishes itself from siblings by being a discovery tool for finding 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 it: 'Call this FIRST when you have 500+ tools available and need to find the right ones for your task.' This provides clear guidance and context for when it should be invoked, setting it apart from other tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
entity_profileARead-onlyInspect
Get everything about a company in one call. Use when a user asks "tell me about X", "give me a profile of Acme", "what do you know about Apple", "research Microsoft", "brief me on Tesla", or you'd otherwise need to call 10+ pack tools across SEC EDGAR, SEC XBRL, USPTO, news, and GLEIF. Returns recent SEC filings, latest revenue/net income/cash position fundamentals, USPTO patents matched by assignee, recent news mentions, and the LEI (legal entity identifier) — all with pipeworx:// citation URIs. Pass a ticker like "AAPL" or zero-padded CIK like "0000320193".
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Entity type. Only "company" supported today; person/place coming soon. | |
| value | Yes | Ticker (e.g., "AAPL") or zero-padded CIK (e.g., "0000320193"). Names not supported — use resolve_entity first if you only have a name. |
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 describes the data sources and output format (pipeworx:// URIs) but does not explicitly state that the tool is read-only, disclose latency, or mention any side effects. The description is adequate but could be more explicit about 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?
The description is concise (two sentences) and front-loaded with purpose. The first sentence could be slightly more structured, but overall it is efficient and clear.
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 the tool (aggregating multiple data sources) and the absence of an output schema, the description covers the key aspects: what data is returned, citation URIs, and an alternative for federal contracts. It is sufficiently complete for an agent to understand the tool's scope.
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%, but the description adds valuable context: it specifies that the 'type' is currently only 'company', describes valid input formats for 'value' (ticker or zero-padded CIK), and directs users with names to resolve_entity. This goes beyond the schema alone.
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 'Full profile of an entity across every relevant Pipeworx pack in one call,' listing specific data sources and explicitly contrasting with the federal contracts alternative. This differentiates from siblings like compare_entities and resolve_entity.
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 advises when to use this tool (comprehensive profile) and when not to (federal contracts use usa_recipient_profile). It also hints at prerequisites (use resolve_entity if only a name). However, it does not enumerate all sibling alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
forgetADestructiveInspect
Delete a previously stored memory by key. Use when context is stale, the task is done, or you want to clear sensitive data the agent saved earlier. Pair with remember and recall.
| 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?
The description indicates a destructive action (delete), which is clear. No annotations provided, so the description carries the full burden. It states the operation is irreversible (delete), which is good, but no additional context like whether confirmation is needed or if it's permanent.
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 extremely concise with one short sentence. Every word is necessary, and it's front-loaded with the action and object.
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 operation with one parameter and no output schema, the description is nearly complete. It lacks information about return value or confirmation, but for such a simple tool, it's 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 schema description coverage is 100% for the single required parameter 'key'. The description adds meaning by specifying it's a 'memory key', which aligns with the schema description. No extra semantic info beyond the schema, but given high coverage, a 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 uses a specific verb ('Delete') and resource ('stored memory by key'). It clearly states what the tool does. However, it could be more distinctive from siblings like 'recall' or '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?
The description implies usage when you want to delete a memory by key, but no guidance on when not to use it or alternatives. Given the sibling tools, there's no explicit mention of 'forget' vs 'recall' or 'remember'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hud_chasARead-onlyInspect
Get housing affordability data by income level and family type. Returns household counts with cost burdens, overcrowding, and housing problems. Use for housing needs assessment.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Data year (e.g., 2020). Omit for the most recent available. | |
| _apiKey | Yes | HUD API token | |
| entity_id | No | FIPS code for a specific county or place. Omit to get state-level data. | |
| state_code | Yes | Two-letter state code (e.g., "CA", "NY"). |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | Housing affordability strategy data from HUD API |
| year | Yes | Data year requested or 'latest' |
| state | Yes | Two-letter state code provided in request |
| entity_id | Yes | FIPS code if provided, null for state-level data |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description must disclose behavioral traits. It notes that data is from HUD and focuses on low-income households, but does not mention data limitations, update frequency, or any constraints like rate limits or authentication requirements (beyond the API key parameter).
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, front-loaded with the core action and followed by purpose and usage context. No fluff or redundant 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?
Given the tool has no output schema, the description could be more specific about the return format or data structure, but it provides enough context for the agent to understand the tool's purpose and typical use. The input schema is comprehensive, so the description 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%, so the schema already documents all parameters. The description adds context about the data's purpose but does not add semantics beyond the schema for individual parameters. 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?
The description clearly states it gets CHAS data from HUD and explains its purpose (demonstrating housing problems and needs, used for planning affordable housing). The verb 'Get' combined with the resource 'Comprehensive Housing Affordability Strategy (CHAS) data' is specific and distinct from sibling tools like hud_fair_market_rents or hud_income_limits.
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 use cases for planning affordable housing, but does not explicitly state when not to use it or suggest alternatives among sibling tools. However, the context of 'communities to plan affordable housing' provides clear usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hud_crosswalkBRead-onlyInspect
Map ZIP codes to census tracts, counties, CBSAs, and congressional districts. Returns geographic identifiers. Use to translate between location code formats or join datasets.
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Crosswalk type: 1=ZIP-to-tract, 2=ZIP-to-county, 3=ZIP-to-CBSA, 4=ZIP-to-congressional-district, 7=county-to-ZIP. | |
| query | Yes | Input value: ZIP code (for types 1-4), or FIPS county code (for type 7). Example: "90210" or "06037". | |
| _apiKey | Yes | HUD API token |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | Geographic crosswalk mapping data from HUD API |
| query | Yes | Input query value provided in request |
| crosswalk_type | Yes | Human-readable crosswalk type label |
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 states the tool 'maps' and is 'essential for geographic analysis', which suggests a read-only operation. However, it does not disclose details like API rate limits, authentication needs (only mentions an API key parameter but not required permissions), or whether the crosswalk data is updated periodically. Adequate but minimal 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?
Two sentences, no waste. First sentence defines the tool, second sentence gives usage context. Efficient 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 3 simple parameters, 100% schema coverage, no output schema, and no annotations, the description is fairly complete. It explains what the tool does and why it's useful. Could mention that results are typically a list of geographic codes, 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 description coverage is 100%, and the description adds value by explaining the mapping types (e.g., ZIP-to-tract) and providing examples like '90210' and '06037'. This goes beyond the schema's basic parameter 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 that the tool maps between ZIP codes, census tracts, counties, CBSAs, and congressional districts, using a specific verb 'Maps' and resource 'HUD USPS ZIP code crosswalk'. It distinguishes from siblings like hud_chas or hud_fair_market_rents by focusing on geographic crosswalking, but could be more explicit about its unique role.
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 versus alternatives. The description implies it's for geographic analysis when joining data from different sources, but does not specify when not to use it or mention sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hud_fair_market_rentsARead-onlyInspect
Get Fair Market Rent ceilings by bedroom count (0–4+) for a specific area and year. Returns rent limits by bedroom count. Use to set voucher payment standards and rental assistance caps.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Fiscal year (e.g., 2024). Omit for the most recent year. | |
| _apiKey | Yes | HUD API token | |
| entity_id | No | FIPS code or ZIP code to get FMR for a specific area. Omit to get all areas in the state. | |
| state_code | Yes | Two-letter state code (e.g., "CA", "NY", "TX"). Required to get state-level summary. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | Fair Market Rent data from HUD API |
| year | Yes | Fiscal year requested or 'latest' |
| state | Yes | Two-letter state code provided in request |
| entity_id | Yes | FIPS or ZIP code if provided, null otherwise |
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 explains what FMRs are used for but does not disclose any side effects, rate limits, or authentication requirements beyond the API key parameter.
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?
Description is concise with three sentences: purpose, context, output. No redundancy, front-loaded with key action.
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, description explains return value (rent estimates by bedroom count). Complexity is moderate, and description covers core functionality adequately.
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 baseline is 3. Description does not add meaning beyond schema; it mentions 'by bedroom count' but that is implicit in output, not parameters.
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 Fair Market Rents from HUD and explains their use cases (Housing Choice Voucher, Section 8, HOME). It distinguishes from siblings like hud_income_limits and hud_chas by focusing on rent estimates by bedroom count.
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 obtaining FMR data but lacks explicit guidance on when to use this vs. other HUD tools. No mention of prerequisites (e.g., API key) or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hud_income_limitsARead-onlyInspect
Check income eligibility thresholds (extremely low, very low, low-income) for HUD programs by area and family size. Returns income limits by category. Use to determine program qualification.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Fiscal year (e.g., 2024). Omit for the most recent year. | |
| _apiKey | Yes | HUD API token | |
| entity_id | No | FIPS code or metro area code for a specific area. Omit to get all areas in the state. | |
| state_code | Yes | Two-letter state code (e.g., "CA", "NY"). |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | Income limits data from HUD API |
| year | Yes | Fiscal year requested or 'latest' |
| state | Yes | Two-letter state code provided in request |
| entity_id | Yes | FIPS code or metro area code if provided, null otherwise |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Describes return thresholds but does not disclose pagination, rate limits, or whether the API requires authentication beyond the API key. Does not mention if data is cached or real-time.
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 that front-load the purpose. No wasted words, but could be slightly more structured with bullet points for the return values.
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 adequately explains the return thresholds. Tool is simple (4 params, no enums), so description is sufficient for a basic understanding. However, missing details on how output is structured (e.g., by family size) could be improved.
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 documents all parameters well. The description does not add meaning beyond the schema (e.g., no explanation of FIPS codes or metro area codes). 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?
Clearly states it retrieves HUD income limits for housing programs by area, specifying eligibility categories (extremely low, very low, low) and family size. Distinguishes itself from sibling tools like hud_chas and hud_fair_market_rents.
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?
Description implies use for determining income eligibility but does not explicitly state when to use versus alternatives like hud_chas or hud_fair_market_rents. No guidance on when to omit parameters.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hud_list_statesARead-onlyInspect
List all U.S. state codes and names. Returns state abbreviations and full names. Use to validate or discover state codes for other HUD tools.
| Name | Required | Description | Default |
|---|---|---|---|
| _apiKey | Yes | HUD API token |
Output Schema
| Name | Required | Description |
|---|---|---|
| states | Yes | List of all U.S. state codes and names |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description states the tool lists codes and names, which implies a read-only operation. No annotations are provided, so the description carries the burden. It does not detail any destructive behavior or rate limits, but given the simplicity of the operation, the description is adequate.
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 no wasted words. Front-loaded with the primary action and includes the 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 the simple parameter set (one required string), no output schema, and straightforward purpose, the description is complete. It tells the agent what the tool does and why it is useful.
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 '_apiKey' documented in the schema. The description does not add extra meaning about the parameter beyond the schema, but the schema already fully describes it. 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?
The description clearly states the tool lists U.S. state codes and names from the HUD API, with the specific verb 'list' and resource 'state codes and names'. It also distinguishes itself by mentioning its utility for discovering valid state codes for other HUD 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 explains when to use this tool: 'Useful for discovering valid state codes to use with other HUD tools.' It implies a preparatory or lookup context, but does not explicitly mention when not to use it or name alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pipeworx_feedbackAInspect
Tell the Pipeworx team something is broken, missing, or needs to exist. Use when a tool returns wrong/stale data (bug), when a tool you wish existed isn't in the catalog (feature/data_gap), or when something worked surprisingly well (praise). Describe the issue in terms of Pipeworx tools/packs — don't paste the end-user's prompt. The team reads digests daily and signal directly affects roadmap. Rate-limited to 5 per identifier per day. Free; doesn't count against your tool-call quota.
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | bug = something broke or returned wrong data. feature = a new tool or capability you wish existed. data_gap = data Pipeworx does not currently expose. praise = positive note. other = anything else. | |
| context | No | Optional structured context: which tool, pack, or vertical this relates to. | |
| message | Yes | Your feedback in plain text. Be specific (which tool, what error, what data was missing). 1-2 sentences typical, 2000 chars max. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description handles transparency. Mentions rate limit (5 per day per identifier) and that it's 'Free'. Could add more about side effects but adequate for a feedback tool.
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?
Four sentences, each with clear purpose: purpose, use cases, instruction, rate limit. No superfluous text. Well-structured 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?
Covers key aspects for a feedback tool: what to send, how to structure, rate limit. Lacks description of outcome (e.g., acknowledgment). But sufficient given simplicity and 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 coverage is 100% but description adds value by instructing not to include end-user's prompt verbatim and providing context for the optional context object. Enhances understanding 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?
The description clearly states 'Send feedback to the Pipeworx team' and lists specific use cases: bug reports, feature requests, missing data, or praise. It distinguishes from sibling tools like ask_pipeworx and discover_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?
Provides explicit guidance on when to use (feedback) and what to include (what you tried, not the user's prompt). Includes rate limit info. Lacks explicit exclusion of alternatives but is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recallARead-onlyInspect
Retrieve a value previously saved via remember, or list all saved keys (omit the key argument). Use to look up context the agent stored earlier — the user's target ticker, an address, prior research notes — without re-deriving it from scratch. Scoped to your identifier (anonymous IP, BYO key hash, or account ID). Pair with remember to save, forget to delete.
| 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 must disclose behavioral traits. It clearly states the two behaviors (retrieve by key or list all), the persistence across sessions, and implies a storage mechanism. However, it does not mention side effects (e.g., if recall is destructive, if it requires special permissions, or what happens if the key doesn't exist). Still, the description is fairly transparent for a simple read operation.
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, well-structured sentence that front-loads the action ('Retrieve a previously stored memory by key, or list all stored memories') and then provides usage guidance. Every part earns its place without redundancy.
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 (single optional parameter, no output schema), the description is complete enough. It covers both modes and mentions cross-session persistence. Minor omission: it doesn't specify what happens if the key does not exist (error vs empty result), but for a simple retrieval tool this is acceptable.
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: the only parameter 'key' is described in the schema and the description adds context on when to omit it. The description goes beyond the schema by explaining the dual behavior (retrieve vs list) and the session persistence, which enriches the parameter's meaning.
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 ('retrieve') and resource ('memory by key') and clearly distinguishes the two modes: retrieving a specific key or listing all memories when key is omitted. It also hints at its use across sessions, which differentiates it from 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 states when to use this tool ('to retrieve context you saved earlier') and when to omit the key ('to list all stored memories'). It provides clear guidance on both modes, and the context of 'session or previous sessions' helps the agent decide when to use recall versus remember or forget.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recent_changesARead-onlyInspect
What's new with a company in the last N days/months? Use when a user asks "what's happening with X?", "any updates on Y?", "what changed recently at Acme?", "brief me on what happened with Microsoft this quarter", "news on Apple this month", or you're monitoring for changes. Fans out to SEC EDGAR (recent filings), GDELT (news mentions in window), and USPTO (patents granted) in parallel. since accepts ISO date ("2026-04-01") or relative shorthand ("7d", "30d", "3m", "1y"). Returns structured changes + total_changes count + pipeworx:// citation URIs.
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Entity type. Only "company" supported today. | |
| since | Yes | Window start — ISO date ("2026-04-01") or relative ("7d", "30d", "3m", "1y"). Use "30d" or "1m" for typical monitoring. | |
| value | Yes | Ticker (e.g., "AAPL") or zero-padded CIK (e.g., "0000320193"). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes parallel fan-out to three sources, return format (structured changes, total_changes count, URIs). Since no annotations are provided, the description carries the full burden. It is transparent about behavior, though it doesn't state whether it's read-only (implied by design).
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?
One paragraph, front-loaded with purpose, followed by specific details. Every sentence adds value, 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?
Since there is no output schema, the description explains return values (structured changes, count, URIs). It covers all parameters, constraints, and behavior, making it fully informative for an AI agent.
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% (all parameters documented), baseline is 3. The description adds value with details on the `since` parameter (ISO date or relative formats) and notes that `type` is limited to 'company'. This exceeds the schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns what's new about an entity since a given time, specifying the entity type (company) and the data sources (SEC EDGAR, GDELT, USPTO). This differentiates it from sibling tools like entity_profile or compare_entities.
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 suggests use cases: 'brief me on what happened with X' or change-monitoring workflows. It does not discuss when not to use, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rememberAInspect
Save data the agent will need to reuse later — across this conversation or across sessions. Use when you discover something worth carrying forward (a resolved ticker, a target address, a user preference, a research subject) so you don't have to look it up again. Stored as a key-value pair scoped by your identifier. Authenticated users get persistent memory; anonymous sessions retain memory for 24 hours. Pair with recall to retrieve later, forget to delete.
| 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. It discloses memory persistence behavior (authenticated vs. anonymous) and intended use. Does not mention overwrite behavior or limits, but adds meaningful context beyond 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?
Two concise sentences with clear purpose, usage examples, and persistence details. 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 simple key-value store with no output schema, the description covers purpose, persistence, and typical use. Missing details on overwrite behavior or maximum length, but overall sufficient for agent to use correctly.
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 descriptions for key and value. The description adds value by providing examples of what keys could be (e.g., 'subject_property'), but does not elaborate on value format beyond 'any text'. Baseline 3 is appropriate as schema already does heavy lifting.
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 stores a key-value pair in session memory. It specifies the verb ('store'), resource ('key-value pair'), and context ('session memory'), distinguishing it from recall and forget siblings.
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 use cases ('save intermediate findings, user preferences, or context across tool calls') and distinguishes between authenticated (persistent) and anonymous (24h) sessions. However, it does not explicitly contrast with forget or recall, which are siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolve_entityARead-onlyInspect
Look up the canonical/official identifier for a company or drug. Use when a user mentions a name and you need the CIK (for SEC), ticker (for stock data), RxCUI (for FDA), or LEI — the ID systems that other tools require as input. Examples: "Apple" → AAPL / CIK 0000320193, "Ozempic" → RxCUI 1991306 + ingredient + brand. Returns IDs plus pipeworx:// citation URIs. Use this BEFORE calling other tools that need official identifiers. Replaces 2–3 lookup calls.
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Entity type: "company" or "drug". | |
| value | Yes | For company: ticker (AAPL), CIK (0000320193), or name. For drug: brand or generic name (e.g., "ozempic", "metformin"). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses accepted input formats, return fields (ticker, CIK, name, URIs), and the fact it is a single call. This is sufficient for a read-only resolution tool, though pricing or rate limits are not mentioned.
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 extremely concise (two sentences plus a bullet) yet packs essential information. It is front-loaded with the core purpose and uses no superfluous 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?
Despite lacking an output schema, the description explicitly lists the return fields (ticker, CIK, name, resource URIs). For a simple tool with two parameters and no complex behavior, this is complete and leaves no critical gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions, but the description adds value by explaining the enum value 'company' and giving concrete examples for the 'value' parameter (e.g., 'AAPL', '0000320193'), which enhances understanding beyond the 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?
The description clearly states the verb 'Resolve', the resource 'entity', and the outcome 'to canonical IDs'. It provides specific examples (ticker, CIK, name) and distinguishes from siblings by noting it replaces multiple calls, making the purpose unambiguous.
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 explains when to use the tool (when you need canonical IDs) and highlights efficiency gains (replaces 2–3 lookup calls). However, it does not explicitly state when not to use it or mention alternative tools, which would strengthen guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_claimARead-onlyInspect
Fact-check, verify, validate, or confirm/refute a natural-language factual claim or statement against authoritative sources. Use when an agent needs to check whether something a user said is true ("Is it true that…?", "Was X really…?", "Verify the claim that…", "Validate this statement…"). v1 supports company-financial claims (revenue, net income, cash position for public US companies) via SEC EDGAR + XBRL. Returns a verdict (confirmed / approximately_correct / refuted / inconclusive / unsupported), extracted structured form, actual value with pipeworx:// citation, and percent delta. Replaces 4–6 sequential calls (NL parsing → entity resolution → data lookup → numeric comparison).
| Name | Required | Description | Default |
|---|---|---|---|
| claim | Yes | Natural-language factual claim, e.g., "Apple's FY2024 revenue was $400 billion" or "Microsoft made about $100B in profit last year". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but description fully discloses behavior: returns verdict, structured form, actual value with citation, and percent delta. Also explains it replaces 4-6 sequential agent calls, setting clear 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?
Concise yet informative. Two sentences: first states main purpose and scope, second details outputs and efficiency gains. 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 one parameter and no output schema, the description thoroughly explains what the tool returns (verdict, structured form, actual value, citation, delta) and its advantage over sequential calls. Complete for an agent to understand usage.
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?
High schema coverage (100%) for the single 'claim' parameter. Description adds value with examples and explains the natural-language nature, going beyond the schema's basic description.
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?
Clear verb 'fact-check' with specific resource 'natural-language claim against authoritative sources'. Explicitly limits scope to company-financial claims for US public companies via SEC EDGAR + XBRL, differentiating it from 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?
States when to use (fact-checking claims, especially financial) and what it covers. Lacks explicit 'when not to use' but the scope is clearly defined, implying alternatives for non-financial claims.
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!