datafood-mcp
Server Details
DataFood: 16 data sources (crypto/DeFi/security/news/finance) via one MCP. Bundles save ~92%.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- atmflow55/datafood-mcp
- GitHub Stars
- 1
- Server Listing
- DataFood
Available Tools
4 toolsdatafood_bundleAInspect
Bundle 1-20 cross-niche queries in one call. Saves 50-92% vs. per-API. Free preview accepts up to 5; paid via Stripe session_id or x402 X-Payment header.
| Name | Required | Description | Default |
|---|---|---|---|
| free | No | If true, return free 1-row preview (capped at 5 queries) | |
| queries | Yes | ||
| session_id | No | Optional Stripe checkout session_id for paid full results |
TDQS
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 key behaviors: bundling limit (1-20), free preview cap (5), and payment requirements via Stripe session_id or x402 header. This adds significant behavioral context beyond the schema, though it omits error handling and result structure.
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, using two sentences to convey purpose, quantity limits, cost savings, and payment methods. Every phrase earns its place with 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?
For a tool with 3 params and no output schema, the description covers the core usage: how to bundle, payment, and limits. It does not describe the return format or error behavior, but given the complexity and the presence of the schema for limits, it is fairly complete. Slight gap for edge cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 67% (free and session_id have descriptions). The description adds meaning to 'free' (preview up to 5) and 'session_id' (paid via Stripe), but does not clarify the 'queries' parameter's 'q' field or the structure of each query object, relying on the schema's type enum. Moderate value 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 it bundles 1-20 cross-niche queries into one call, using the specific verb 'Bundle' and clearly distinguishing from per-API calls (likely the sibling datafood_query). This provides a strong sense of the tool's role and scope.
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?
It implies use for batching multiple queries to achieve cost savings, and explains free vs paid modes with payment methods. However, it does not explicitly state when not to use it (e.g., for a single query) or name alternative tools, but the 'vs. per-API' phrase gives clear context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
datafood_portfolio_askBInspect
Natural-language Q&A on a Plaid-linked portfolio (read-only). Requires user_id of a previously-synced portfolio.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| question | Yes | e.g. 'Am I overexposed to tech?' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the tool is read-only and requires a previously-synced portfolio user_id, which are useful behavioral traits. However, with no annotations, it does not cover error behavior, data freshness, or invalid user_id handling, limiting 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 extremely concise: two sentences, front-loaded with the core purpose and followed by the key prerequisite. No 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?
For a simple read-only Q&A tool, the description covers purpose, safety, and a parameter prerequisite. However, it does not mention the return format or provide guidance on choosing this tool over siblings, leaving gaps for agent selection.
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 context for user_id by specifying it must belong to a previously-synced portfolio, partially compensating for the schema lacking a description for that parameter. The question parameter already has an example in the schema, and the description does not add further 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 clearly states the tool performs natural-language Q&A on a Plaid-linked portfolio and is read-only. It identifies the specific resource and action but does not explicitly differentiate it from sibling tools like datafood_query or datafood_bundle.
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 a prerequisite (user_id of a previously-synced portfolio) but no guidance on when to use this tool versus siblings. There is no when-not-to-use or alternative recommendation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
datafood_queryAInspect
Fetch a single data type from DataFood. Free 1-row preview, no auth required. Use datafood_bundle for 3+ queries (cheaper).
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Query string. See /api/v1/catalog for per-type examples. | |
| type | Yes | One of 42 supported data types (DATAFOOD_CATALOG) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description effectively discloses key behaviors: it returns a free 1-row preview and requires no authentication. This adds useful context about usage limits and access requirements, though it does not detail response structure or potential rate limits.
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 short, front-loaded sentences. Every sentence adds value: the first states the core action, the second explains cost and alternative usage. No redundant or filler content.
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 description adequately covers purpose, usage alternative, and important constraints (free preview, no auth) for a simple fetch tool with only two parameters. It lacks details on return format, but since there is no output schema, a brief explanation of the preview would improve completeness; still, it is sufficient for a basic 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 provides 100% description coverage for both parameters, including an enum for 'type'. The description adds no further parameter-specific details beyond what the schema already contains, so it meets the baseline but does not exceed 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 fetches a single data type from DataFood, using a specific verb and resource. It also distinguishes itself from the sibling datafood_bundle by noting that bundle is for 3+ queries, making the purpose immediately clear.
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 versus datafood_bundle, mentioning cost and query volume. However, it does not address the other sibling tools (portfolio_ask, watch_session), so the guidance is not fully comprehensive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
datafood_watch_sessionAInspect
Open a watchable agent session — returns session_id and a public /watch/{id} URL for live observation. Free.
| Name | Required | Description | Default |
|---|---|---|---|
| intent | No | Optional one-line intent string | |
| agent_id | No | Optional human-readable agent identifier |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It does disclose key behavior: returns session_id and a public URL, and notes it is 'Free'. However, it omits details about session lifecycle, prerequisites, or potential side effects (e.g., whether the agent starts executing). This is basic but not rich 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 a single, front-loaded sentence with no wasted words. It states the action, outputs, and a notable feature (Free) efficiently, earning a perfect score for conciseness and structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with no required parameters and no output schema, the description is fairly complete: it covers purpose, return values, and cost. It lacks usage exclusions and session lifecycle details, but given the low complexity, this is acceptable. A small gap in alternative guidance prevents a 5.
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% since both parameters have descriptions. The tool description itself does not add extra meaning beyond the schema, but the schema already documents each parameter adequately. Baseline 3 is appropriate as the description adds no value over the structured field 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 identifies the tool's purpose with a specific verb+resource: 'Open a watchable agent session'. It also distinctively notes the tool returns a session_id and a public /watch/{id} URL, setting it apart from siblings like datafood_query or datafood_bundle. The purpose is unambiguous and no tautology is present.
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 indicates the tool is for 'live observation' of an agent session, implying when to use it. However, it does not explicitly compare with alternatives or state when not to use it. Given the sibling tools, this is a clear but not fully explicit usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- Changed
datafood_bundle1 field changed- changed
Input schema / properties / queries / items / properties / type / enumPrevious value: -[ - "token-risk", - "breach", - "contract-risk", - "defi-yield", - "scrape", - "crypto-price", - "crypto-trending", - "stock-quote", - "weather", - "news-hn-top", - "news-reddit", - "flights-near", - "real-estate-rss", - "sports-scores", - "gas-prices-eth", - "forex", - "github-trending", - "whale-tracker", - "liquidations", - "funding-rates", - "order-book", - "ta-indicators", - "sentiment-ticker", - "token-unlock", - "mev-exposure", - "stable-depeg", - "cross-dex-arb", - "energy-oil", - "energy-grid-eu", - "shipping-bdi", - "air-quality", - "cdc-flu", - "who-outbreak", - "sec-edgar", - "acled-conflict", - "gdelt-events", - "twitch-top", - "steam-top", - "reddit-trending", - "commodity-metals", - "agriculture-prices", - "legal-courtlistener" -]New value: +[ + "token-risk", + "breach", + "contract-risk", + "defi-yield", + "scrape", + "crypto-price", + "crypto-trending", + "stock-quote", + "weather", + "news-hn-top", + "news-reddit", + "flights-near", + "real-estate-rss", + "sports-scores", + "gas-prices-eth", + "forex", + "github-trending", + "whale-tracker", + "liquidations", + "funding-rates", + "order-book", + "ta-indicators", + "sentiment-ticker", + "token-unlock", + "mev-exposure", + "stable-depeg", + "cross-dex-arb", + "energy-oil", + "energy-grid-eu", + "shipping-bdi", + "air-quality", + "cdc-flu", + "who-outbreak", + "sec-edgar", + "acled-conflict", + "gdelt-events", + "twitch-top", + "steam-top", + "reddit-trending", + "commodity-metals", + "agriculture-prices", + "legal-courtlistener", + "economic-indicator" +]
- Changed
datafood_query1 field changed- changed
Input schema / properties / type / enumPrevious value: -[ - "token-risk", - "breach", - "contract-risk", - "defi-yield", - "scrape", - "crypto-price", - "crypto-trending", - "stock-quote", - "weather", - "news-hn-top", - "news-reddit", - "flights-near", - "real-estate-rss", - "sports-scores", - "gas-prices-eth", - "forex", - "github-trending", - "whale-tracker", - "liquidations", - "funding-rates", - "order-book", - "ta-indicators", - "sentiment-ticker", - "token-unlock", - "mev-exposure", - "stable-depeg", - "cross-dex-arb", - "energy-oil", - "energy-grid-eu", - "shipping-bdi", - "air-quality", - "cdc-flu", - "who-outbreak", - "sec-edgar", - "acled-conflict", - "gdelt-events", - "twitch-top", - "steam-top", - "reddit-trending", - "commodity-metals", - "agriculture-prices", - "legal-courtlistener" -]New value: +[ + "token-risk", + "breach", + "contract-risk", + "defi-yield", + "scrape", + "crypto-price", + "crypto-trending", + "stock-quote", + "weather", + "news-hn-top", + "news-reddit", + "flights-near", + "real-estate-rss", + "sports-scores", + "gas-prices-eth", + "forex", + "github-trending", + "whale-tracker", + "liquidations", + "funding-rates", + "order-book", + "ta-indicators", + "sentiment-ticker", + "token-unlock", + "mev-exposure", + "stable-depeg", + "cross-dex-arb", + "energy-oil", + "energy-grid-eu", + "shipping-bdi", + "air-quality", + "cdc-flu", + "who-outbreak", + "sec-edgar", + "acled-conflict", + "gdelt-events", + "twitch-top", + "steam-top", + "reddit-trending", + "commodity-metals", + "agriculture-prices", + "legal-courtlistener", + "economic-indicator" +]
2 tool updates
- Changed
datafood_bundle1 field changed- changed
Input schema / properties / queries / items / properties / type / enumPrevious value: -[ - "token-risk", - "breach", - "contract-risk", - "defi-yield", - "scrape", - "crypto-price", - "crypto-trending", - "stock-quote", - "weather", - "news-hn-top", - "news-reddit", - "flights-near", - "real-estate-rss", - "sports-scores", - "gas-prices-eth", - "forex", - "github-trending", - "whale-tracker", - "liquidations", - "funding-rates", - "order-book", - "ta-indicators", - "sentiment-ticker", - "token-unlock", - "mev-exposure", - "stable-depeg", - "cross-dex-arb" -]New value: +[ + "token-risk", + "breach", + "contract-risk", + "defi-yield", + "scrape", + "crypto-price", + "crypto-trending", + "stock-quote", + "weather", + "news-hn-top", + "news-reddit", + "flights-near", + "real-estate-rss", + "sports-scores", + "gas-prices-eth", + "forex", + "github-trending", + "whale-tracker", + "liquidations", + "funding-rates", + "order-book", + "ta-indicators", + "sentiment-ticker", + "token-unlock", + "mev-exposure", + "stable-depeg", + "cross-dex-arb", + "energy-oil", + "energy-grid-eu", + "shipping-bdi", + "air-quality", + "cdc-flu", + "who-outbreak", + "sec-edgar", + "acled-conflict", + "gdelt-events", + "twitch-top", + "steam-top", + "reddit-trending", + "commodity-metals", + "agriculture-prices", + "legal-courtlistener" +]
- Changed
datafood_query2 fields changed- changed
Input schema / properties / type / descriptionPrevious value: -"One of 16 supported data types"New value: +"One of 42 supported data types (DATAFOOD_CATALOG)" - changed
Input schema / properties / type / enumPrevious value: -[ - "token-risk", - "breach", - "contract-risk", - "defi-yield", - "scrape", - "crypto-price", - "crypto-trending", - "stock-quote", - "weather", - "news-hn-top", - "news-reddit", - "flights-near", - "real-estate-rss", - "sports-scores", - "gas-prices-eth", - "forex", - "github-trending", - "whale-tracker", - "liquidations", - "funding-rates", - "order-book", - "ta-indicators", - "sentiment-ticker", - "token-unlock", - "mev-exposure", - "stable-depeg", - "cross-dex-arb" -]New value: +[ + "token-risk", + "breach", + "contract-risk", + "defi-yield", + "scrape", + "crypto-price", + "crypto-trending", + "stock-quote", + "weather", + "news-hn-top", + "news-reddit", + "flights-near", + "real-estate-rss", + "sports-scores", + "gas-prices-eth", + "forex", + "github-trending", + "whale-tracker", + "liquidations", + "funding-rates", + "order-book", + "ta-indicators", + "sentiment-ticker", + "token-unlock", + "mev-exposure", + "stable-depeg", + "cross-dex-arb", + "energy-oil", + "energy-grid-eu", + "shipping-bdi", + "air-quality", + "cdc-flu", + "who-outbreak", + "sec-edgar", + "acled-conflict", + "gdelt-events", + "twitch-top", + "steam-top", + "reddit-trending", + "commodity-metals", + "agriculture-prices", + "legal-courtlistener" +]
2 tool updates
- Changed
datafood_bundle1 field changed- changed
Input schema / properties / queries / items / properties / type / enumPrevious value: -[ - "token-risk", - "breach", - "contract-risk", - "defi-yield", - "scrape", - "crypto-price", - "crypto-trending", - "stock-quote", - "weather", - "news-hn-top", - "news-reddit", - "flights-near", - "real-estate-rss", - "sports-scores", - "gas-prices-eth", - "forex", - "github-trending" -]New value: +[ + "token-risk", + "breach", + "contract-risk", + "defi-yield", + "scrape", + "crypto-price", + "crypto-trending", + "stock-quote", + "weather", + "news-hn-top", + "news-reddit", + "flights-near", + "real-estate-rss", + "sports-scores", + "gas-prices-eth", + "forex", + "github-trending", + "whale-tracker", + "liquidations", + "funding-rates", + "order-book", + "ta-indicators", + "sentiment-ticker", + "token-unlock", + "mev-exposure", + "stable-depeg", + "cross-dex-arb" +]
- Changed
datafood_query1 field changed- changed
Input schema / properties / type / enumPrevious value: -[ - "token-risk", - "breach", - "contract-risk", - "defi-yield", - "scrape", - "crypto-price", - "crypto-trending", - "stock-quote", - "weather", - "news-hn-top", - "news-reddit", - "flights-near", - "real-estate-rss", - "sports-scores", - "gas-prices-eth", - "forex", - "github-trending" -]New value: +[ + "token-risk", + "breach", + "contract-risk", + "defi-yield", + "scrape", + "crypto-price", + "crypto-trending", + "stock-quote", + "weather", + "news-hn-top", + "news-reddit", + "flights-near", + "real-estate-rss", + "sports-scores", + "gas-prices-eth", + "forex", + "github-trending", + "whale-tracker", + "liquidations", + "funding-rates", + "order-book", + "ta-indicators", + "sentiment-ticker", + "token-unlock", + "mev-exposure", + "stable-depeg", + "cross-dex-arb" +]
4 tool updates
- First observed
datafood_bundle - First observed
datafood_portfolio_ask - First observed
datafood_query - First observed
datafood_watch_session
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Live financial data MCP: FX, crypto, stocks, news, URL reader. x402 on Base: $0.001/call.
Real-time crypto market data: candles, tickers, orderbooks across 13+ exchanges via MCP.
Crypto trading intelligence MCP — 34+ endpoints, x402 pay-per-use, AI agent strategy & execution
52 paid x402 API endpoints for AI agents — crypto, data, DeFi, market intelligence.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceCrypto intelligence MCP: 104 tools for market data, ML signals, on-chain analytics, derivatives, and Bittensor subnets. Pay-per-call via x402 USDC on Base/Solana/Algorand/Stellar or $9.99/mo API key.MIT
- -licenseNot gradedqualityNot gradedmaintenanceReal-time financial market data MCP server. Stocks, crypto, technicals, sentiment, FDA calendar. No API keys required.-
- AlicenseAqualityDmaintenanceMCP server for pay-per-call DeFi and crypto data via x402 micropayments on Base. 8 endpoints: token prices, TVL, funding rates, token security, gas tracker, whale monitoring, wallet profiling, and yield scanning.851MIT
- AlicenseAqualityCmaintenancePay-per-call MCP server for market data with USDC micro-payments, featuring unique ML market-regime forecasts, news catalyst radar, and a live-verified algorithmic trading track record.1267MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: bundling multiple queries, Q&A on a portfolio, executing a single query, and opening a watchable session. There is no overlap or ambiguity.
All tools share the 'datafood_' prefix and use snake_case. However, 'portfolio_ask' is a verb-noun order that slightly deviates from the noun-like pattern of 'bundle', 'query', and 'watch_session'.
With 4 tools covering single queries, bundled queries, portfolio Q&A, and agent sessions, the count is well-scoped for the domain. No tool feels extraneous or missing.
The tools cover core operations (query, bundle, portfolio analysis, session management). Minor gaps exist, such as lacking tools for payment management or listing sessions, but these are not essential for basic usage.