feeds
Server Details
Congress trades, BTC ETF flows, SEC Form 4 insiders — every record says when we first saw it
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolscongress_tradesAInspect
US Congress stock transactions from official Senate ePTR and House Clerk disclosures (public domain). Every record carries happened_at (transaction date), disclosed_at (filing date) and observed_at (when this pipeline first saw it). Because the STOCK Act permits ~45 days between trade and disclosure, disclosed_at is the field to use for point-in-time work. Senate data is parsed to ticker level; House filings are metadata only.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Substring match on member name | |
| since | No | Only transactions on/after this YYYY-MM-DD | |
| ticker | No | Filter to one ticker, e.g. NVDA | |
| chamber | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations available, the description carries the full behavioral burden and does a good job: it explains the three timestamp fields, the ~45-day STOCK Act disclosure delay, and the key limitation that Senate data is parsed to ticker level while House filings are metadata only. It does not cover rate limits, pagination, or return formatting, but the most decision-relevant behaviors are disclosed.
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 appropriately sized at four sentences, each serving a distinct purpose: scope/source, field definitions, temporal semantics, and data-granularity caveat. It is front-loaded with the primary function and contains no filler or repetition. This is a model of concise, information-dense documentation.
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 four optional filters and no output schema, the description provides the return record fields and critical data-quality caveats, which is sufficient for an agent to invoke it correctly. The main gap is the absence of pagination, result limits, ordering, or a note about what 'metadata only' means for House records, which prevents a perfect score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes three of the four parameters (name, since, ticker), leaving chamber with only enum values. The description adds important semantic nuance beyond the schema: the Senate-vs-House granularity difference affects how ticker and chamber filters behave, and the disclosed_at guidance clarifies the intended meaning of since for temporal filtering. This goes beyond the structured schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource (US Congress stock transactions) and its sources, and implies a query/list operation even though no explicit verb like 'list' or 'get' is used. The domain (Congress) and mention of Senate vs House data distinguish it from the sibling tools focused on ETF flows and insider trades, though that contrast is not explicitly stated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no explicit 'when to use this vs alternatives' guidance. However, it implies the intended use case through domain-specific context, and it offers concrete usage advice about using disclosed_at rather than happened_at for point-in-time work. No exclusions or alternative tool names are mentioned, so usage guidance is mostly implied rather than direct.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
etf_flowsAInspect
Spot bitcoin ETF creation/redemption flows, computed as change in shares outstanding times NAV so price moves are removed and only genuine creations/redemptions remain. This series cannot be backfilled -- the issuer publishes only a current snapshot -- so every row was banked on the day it existed. span_days above 1 marks a row that spans a gap.
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Only rows on/after this YYYY-MM-DD | |
| ticker | No | Fund ticker, e.g. IBIT |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it delivers rich behavioral detail: it explains that price moves are removed, that the series cannot be backfilled, that every row was banked on its existing day, and that span_days above 1 flags gaps. This goes well beyond a simple 'returns flows' statement.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and impactful. It leads with the core definition and computation, then adds necessary caveats about backfilling and gap handling. Every sentence earns its place with no filler.
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 annotations and no output schema, the description covers the essential behavioral caveats and the meaning of span_days. It could be marginally more complete by describing the full row structure or default time range, but it is sufficient for selecting and invoking the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both since and ticker documented in the schema. The description adds useful context about output semantics like span_days, but it does not add meaning to the parameters themselves 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 names a specific resource—spot bitcoin ETF creation/redemption flows—and explains the precise computation (change in shares outstanding times NAV). This clearly distinguishes it from the sibling tools, which cover congressional trades and insider transactions.
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 domain is clearly ETF flow data, so the use case is evident relative to the sibling tools. However, the description does not explicitly state when to use this tool versus alternatives, 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.
insider_buysAInspect
SEC Form 4 open-market insider BUYS (public domain). Form-4 code P only: grants, option exercises, tax withholding and gifts are excluded because they are compensation events rather than conviction. An officer or director spending their own money is the signal this feed isolates. Carries observed_at (when recorded here) and happened_at (transaction date on the filing). For disposals use insider_sells.
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Only transactions on/after this YYYY-MM-DD | |
| ticker | No | ||
| min_value | No | Minimum transaction value in USD |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden and does so well: it explains the data source, the code-P-only filter, the exclusion rationale, and the meaning of observed_at versus happened_at. It does not cover ordering, pagination, or rate limits, but those are minor for a simple read-only feed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: scope, exclusion rule, rationale, field semantics, and sibling routing each get one clear sentence. There is no redundant or promotional language.
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 three-optional-parameter read feed with no output schema, the description provides enough context for an agent to decide when to use it and what it returns. The only minor gap is lack of detail about default result ordering or size limits.
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 already documents since and min_value, and the description does not add parameter-level meaning beyond that. The ticker parameter has no schema description and is not mentioned in the tool description, but its meaning is obvious from the context, so the 67% schema coverage is adequate.
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 as a feed of SEC Form 4 open-market insider buys and immediately narrows it to code P transactions. It explicitly excludes grants, option exercises, tax withholding, and gifts, and names the sibling insider_sells for disposals, making the purpose distinct.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It states when this feed is appropriate: when an officer or director spends their own money, i.e., conviction buying. It also gives a direct alternative, telling agents to use insider_sells for disposals, and clarifies which transaction types should not be queried here.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
insider_sellsAInspect
SEC Form 4 open-market insider SELLS (public domain). Form-4 code S only. Read these with care: insiders sell for diversification, tax and pre-scheduled 10b5-1 plans, so a sale carries far less information than a purchase. Carries observed_at (when recorded here) and happened_at (transaction date on the filing). For acquisitions use insider_buys.
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Only transactions on/after this YYYY-MM-DD | |
| ticker | No | ||
| min_value | No | Minimum transaction value in USD |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral disclosure burden. It explains the data source, the Form-4 code filter, the distinction between observed_at and happened_at, and adds important interpretive caveats about insider sales. It does not mention pagination, rate limits, or authentication, but for a simple read-style data tool the provided context is substantial.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with the essential purpose, then adds caveats, field semantics, and a sibling pointer. Every sentence contributes distinct value with no repetition or filler.
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 optional-parameter tool with no output schema, the description is mostly complete: it names key returned fields, explains their meaning, notes the data source, and gives an alternative. It does not describe the full output shape or pagination, but the core information an agent needs to select and invoke the tool is present.
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 already describes since and min_value, but ticker has no description and the tool description does not compensate for that gap. The parameter names are mostly self-explanatory, and the description adds useful context about the data source, but it does not meaningfully enrich the meaning of the input parameters themselves.
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 is specific and actionable: it identifies the tool as SEC Form 4 open-market insider sells, restricts to Form-4 code S, and explicitly contrasts it with insider_buys for acquisitions. This makes the tool's purpose immediately distinguishable from its siblings without needing to inspect schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear usage context: it tells the agent to use this for open-market insider sales, warns that sales carry less informational weight than purchases, and explicitly directs acquisition-related searches to insider_buys. This is strong when-to-use guidance with a named alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Source-backed US market signals: insider filings, Congress trades, institutions, consensus.
SEC filings, insider trades, and earnings data
SEC insider filings as clean economic events - Form 4 trades, Form 144 notices, 13D/G stakes.
Always-on SEC EDGAR watcher: ~45s alerts when an insider files a Form 4 or a firm drops an 8-K.
Related MCP Servers
- AlicenseAqualityAmaintenanceReal-time SEC Form 4 insider trading data — transactions with post-trade returns, cluster-buy signals, Form 144 early warnings, and 13F institutional holdings. 27 tools + 6 research prompts; free tier available.361041MIT
- AlicenseNot gradedqualityBmaintenanceWall Street data feed for AI agents, providing access to 100M+ source-traced SEC records, institutional holdings, insider trades, congress trading, and more via MCP tools.MIT
- AlicenseAqualityBmaintenanceReal-time financial news for AI agents and trading bots — AI-enriched stories with per-ticker analysis, a 1–10 relevance score, SEC Form-4 insider transactions, plus trending and "actionable-now" feeds. Free tier, OAuth, no API key to paste.112MIT
- AlicenseNot gradedqualityBmaintenanceGive your AI agent live SEC EDGAR data: company financials, insider trades, 8-K events, 13F holdings, and the raw filings stream — all normalized to clean JSON, every number traceable back to its sec.gov source filing.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool owns a distinct data domain: congressional stock trades, Bitcoin ETF flows, and insider open-market buys/sells. The two insider tools are directional counterparts with explicit cross-references, so selection ambiguity is minimal.
All tool names use lower_snake_case and follow the same [domain]_[transaction] pattern: congress_trades, etf_flows, insider_buys, insider_sells. The parallelism between insider_buys and insider_sells is particularly clear.
Four tools is a reasonable, focused size for a financial-feeds server, and each feed is distinct. The generic 'feeds' name leaves room for more feeds to be added, but the current count is not thin enough to hurt usability.
The core workflows for each advertised feed are covered: congressional trades, ETF flows, and insider buys/sells with explicit direction separation. Minor gaps exist, such as House filings being metadata-only and no feed-discovery/metadata tool, but these do not block the intended use cases.