Insider Buy Signals
Server Details
Filing-verified U.S. insider-buy signals from SEC Form 4: cluster buys and large-vs-holdings buys.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool targets a distinct query path: cluster subset, filing accession, date range, ticker, and today. There is minor overlap because cluster buys are a subset of general signals, but the descriptions make that distinction explicit.
All tool names use the consistent insider_ prefix and snake_case, with clear modifiers like by_date_range, by_ticker, and today. insider_cluster_buys and insider_filing_lookup fit the same predictable pattern.
Five tools is well-scoped for a focused insider-buy-signals server. Each tool provides a meaningful way to slice the same domain without unnecessary bloat.
The server covers the core query needs for Rule-2 insider-buy signals: today, date range, ticker, cluster concentration, and individual filing lookup. As a read-only signals API, there are no obvious missing operations.
Available Tools
5 toolsinsider_cluster_buysInsider cluster buysAInspect
Rule-2 cluster buys only (>=2 insiders buying the same issuer in-window) — the highest-signal subset. Each record carries its source filing_url.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 filtering rule and notes each record includes the source filing_url, which is useful. However, it does not clarify the meaning of 'in-window,' result ordering, limits, or other behavioral traits an agent might need.
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 core definition and includes only essential details. Every clause adds meaning, and there is 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?
For a zero-parameter read-only tool, the description adequately explains what the tool returns and highlights an important record field. It is slightly incomplete in defining 'in-window' and how this relates to sibling signal tools, but the low complexity keeps the gap small.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so the baseline is 4. The description's mention of filing_url is not parameter-related but adds useful output context; no parameter documentation is needed here.
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 as the Rule-2 cluster-buy signal subset with a concrete definition (>=2 insiders buying the same issuer in-window). It distinguishes itself from sibling signal tools by calling it the 'highest-signal subset,' though it lacks an explicit verb like 'list' or 'return.'
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 phrase 'highest-signal subset' implies this tool is for users seeking top-signal cluster-buy activity, but it does not explicitly state when to use this over sibling tools or when not to use it. No alternatives are named, so the routing guidance is mostly implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
insider_filing_lookupSingle filing lookup by accessionAInspect
The single Rule-2 record for one SEC filing accession, with its filing_url. Returns an error if no gated filing matches the accession.
| Name | Required | Description | Default |
|---|---|---|---|
| accession | Yes | SEC filing accession, e.g. 0001493152-26-040454 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden and does disclose the return item (single Rule-2 record + filing_url) and an error on no gated match. It does not, however, mention read-only/safety status, access restrictions, or any other operational constraints beyond the brief 'gated' hint.
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 filler; the resource and scope are front-loaded and the error condition adds useful information. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter tool with no output schema, the description provides the lookup key, the returned object (including filing_url), and the failure condition. It is complete enough to invoke correctly, though the full Rule-2 record shape is not enumerated.
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 documents the only parameter (accession) with an example, so the description adds no new parameter-level meaning. With 100% schema coverage, 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 identifies a specific resource: the single Rule-2 SEC filing record for one accession, and states that it includes the filing_url. This accession-keyed lookup is clearly distinguished from sibling signal/date/ticker tools, so an agent can tell what it does.
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 phrase 'for one SEC filing accession' implies that the tool is for resolving a single known filing ID, but the description never explicitly says when to prefer it over the sibling signal/cluster tools or when not to use it. Usage is inferable rather than spelled out.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
insider_signals_by_date_rangeInsider-buy signals in a date rangeAInspect
Rule-2 insider-buy signals filed within an inclusive ISO date range. Each record carries its source filing_url.
| Name | Required | Description | Default |
|---|---|---|---|
| end | Yes | Inclusive end date, ISO YYYY-MM-DD | |
| start | Yes | Inclusive start date, ISO YYYY-MM-DD |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral disclosure burden. It adds meaningful traits: the rule-2 filter, inclusive date boundaries, and the presence of a source filing_url on each record. It does not disclose ordering, pagination, or error behavior, but for a simple read-only date-range query these gaps are minor.
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 filler: the first states the tool's purpose and filter, the second clarifies an important property of the returned records. The main behavior is front-loaded and every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a low-complexity tool with two required, fully documented parameters and no output schema, the description gives enough to invoke it correctly: the date range semantics are stated and the record content is partially described. It is not exhaustive about return fields or sibling routing, but it is complete enough for selection and basic use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already describes both parameters as inclusive ISO YYYY-MM-DD dates, so schema coverage is 100%. The description's 'inclusive ISO date range' phrasing reinforces the schema but adds no new per-parameter semantics, matching the baseline for fully documented 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 identifies a specific resource ('Rule-2 insider-buy signals') and the core filter (filed within an inclusive ISO date range). It does not use an explicit action verb like 'returns' or 'lists', but the phrasing plus 'Each record carries...' makes the retrieval behavior clear and distinguishes it from ticker-based and single-day sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: when the agent needs Rule-2 insider-buy signals across a date range. However, it never explicitly contrasts this with sibling tools such as insider_signals_by_ticker or insider_signals_today, leaving the agent to infer the appropriate selection from the name and neighboring tool list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
insider_signals_by_tickerInsider-buy signals for a tickerAInspect
All Rule-2 insider-buy signals for one ticker (case-insensitive). Each record carries its source filing_url.
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes | Ticker symbol (case-insensitive), e.g. DKS |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior. It discloses that the result is a record set including filing_url, but it does not explain Rule-2 criteria, limits, ordering, or pagination. The read-only/query nature is implied rather than explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no filler. The primary scope is front-loaded, and the record detail (filing_url) earns its place by giving an output hint in the absence of an output schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter lookup tool, the description is largely complete: it states what is returned, for what input, and one key output field. It omits anything about data freshness or Rule-2 definition, but those are not necessary to invoke the tool 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 description coverage is 100%, so the schema already documents the ticker parameter and provides an example. The description reinforces case-insensitivity but adds no new parameter semantics 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 identifies the resource ('Rule-2 insider-buy signals') and scope ('one ticker'), differentiating from date-range, today, cluster, and filing-lookup siblings by its ticker-based focus. The added 'case-insensitive' detail removes ambiguity about input matching.
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 gives clear context: use when you need all insider-buy signals for a single ticker, with case-insensitive matching. It does not explicitly name alternatives or exclusion conditions, so it stops short of full routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
insider_signals_todayToday's insider-buy signalsAInspect
Rule-2 insider-buy signals filed today (SEC code P open-market purchases), ranked cluster-first. Each record carries its source filing_url.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations available, the description carries the full burden of behavioral disclosure. It reveals the filtering rule, temporal scope, ranking order, and a constituent field. It does not mention empty-result behavior or read-only status, but for a simple no-parameter query tool this is reasonably transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense sentence that front-loads the core purpose ('Rule-2 insider-buy signals filed today') and then adds essential qualifiers. There is no redundancy or filler; every clause adds meaningful detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with no output schema, the description covers the key selection criteria and a result characteristic (filing_url). It could list additional return fields, but the provided detail is sufficient for selecting and invoking the tool 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?
The tool has zero parameters, so the input schema is empty and schema description coverage is trivially 100%. The description appropriately contains no parameter information, matching the baseline of 4 for tools without 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 states the exact resource (Rule-2 insider-buy signals), the temporal scope (filed today), the SEC code (P open-market purchases), the ranking (cluster-first), and a key field (filing_url). This clearly distinguishes it from siblings like insider_signals_by_date_range and insider_signals_by_ticker without needing to open 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 implies the tool is for today's signals ('filed today'), but it does not explicitly say when to use it versus alternatives or mention sibling tools. No exclusions are provided, so guidance relies on inference rather than direct routing.
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.
5 tool updates
- First observed
insider_cluster_buys - First observed
insider_filing_lookup - First observed
insider_signals_by_date_range - First observed
insider_signals_by_ticker - First observed
insider_signals_today
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
Source-backed US market signals: insider filings, Congress trades, institutions, consensus.
SEC insider filings as clean economic events - Form 4 trades, Form 144 notices, 13D/G stakes.
Financial intelligence: insider trades, SEC filings, 13F holdings, and market signals.
SEC Form 4 insider trades, daily trading plans, 8-K catalysts and market data for AI assistants.
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.362601MIT
- FlicenseNot gradedqualityBmaintenanceEnables risk analysis of US public companies by analyzing 8-K filings and insider activity using live SEC EDGAR data.-
- AlicenseNot gradedqualityFmaintenanceProvides derived financial intelligence for AI agents, including insider activity analysis, earnings surprises, institutional moves, stock screening with a proprietary composite value score, and macro indicators.MIT
- AlicenseAqualityDmaintenanceProvides actionable financial intelligence tools for AI agents including insider buying signals, earnings IV plays, market pulse, stock analysis, and options strategies via free public data sources.6MIT