intelcue-mcp
Server Details
Market & competitive intelligence for Claude & AI assistants: trends, alerts, keywords & more.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- IntelCue/intelcue-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 8 of 8 tools scored.
Each tool targets a distinct type of content (blogs, competitive insights, newsletters, etc.), but there is slight potential for overlap between blog updates, newsletter content, and X updates if they cover similar topics. Overall, the purposes are clear.
All tool names follow a consistent 'get_<noun_phrase>' pattern with snake_case, making them predictable and easy to distinguish.
With 8 tools, the count is well-scoped for an intelligence monitoring server. Each tool covers a specific data source without redundancy or unnecessary bloat.
The tool set covers core retrieval needs for various intelligence sources, but it lacks any write or management operations. For a read-only monitoring server, this is acceptable, though a search or aggregate tool would be a useful addition.
Available Tools
8 toolsget_blog_updatesGet Blog UpdatesARead-onlyIdempotentInspect
Get latest blog posts from monitored blogs
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Look back N days (default 7) | |
| limit | No | Max items (default 10) | |
| source_id | No | Filter by source ID |
Output Schema
| Name | Required | Description |
|---|---|---|
| items | Yes | Recent blog posts, most recent first |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations cover safety traits (readOnlyHint, idempotentHint, destructiveHint). Description adds contextual detail 'latest' and 'monitored blogs' but no further behavioral info like pagination.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded, 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?
Output schema covers return values. Description is minimal but sufficient for a read-only list tool with full schema descriptions.
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 describes all three parameters with 100% coverage. Description adds no additional param meaning 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?
Clearly states verb 'get' and resource 'latest blog posts from monitored blogs'. Distinct from siblings like get_trending_topics.
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 explicit guidance on when to use vs alternatives, but purpose is clear from name and description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_competitive_insightsGet Competitive InsightsARead-onlyIdempotentInspect
Get competitive alerts filtered by severity and time range
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Look back N days (default 30) | |
| severity | No | Filter by alert severity |
Output Schema
| Name | Required | Description |
|---|---|---|
| insights | Yes | Competitive alerts, most recent first |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate the tool is read-only, idempotent, and non-destructive. The description does not add further behavioral details like response structure, pagination, latency, or authorization needs. However, it correctly implies a safe query operation, consistent with annotations.
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 sentence of 9 words, immediately stating the core functionality. It avoids superfluous details, but could be slightly expanded to improve clarity without losing conciseness.
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 only two optional parameters with 100% schema coverage and an existing output schema, the description is largely sufficient for understanding the tool's purpose and usage. However, it does not mention default behavior (e.g., default lookback days) or the format of results, though these are covered in the 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 description coverage is 100%, so the schema adequately documents both 'days' and 'severity' parameters. The description only paraphrases the schema by mentioning 'severity and time range', adding no new semantic information about expected values, defaults, or constraints.
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 competitive alerts with filtering by severity and time range. This distinguishes it from sibling tools like get_blog_updates or get_patent_filings, which target different content types. The verb 'Get' and resource 'competitive alerts' are specific and 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 provides no guidance on when to use this tool versus alternatives such as get_trending_topics or get_newsletter_content. It does not mention prerequisites, exclusions, or context for choosing this tool. An explicit usage note would improve agent decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_front_page_briefGet Front Page BriefARead-onlyIdempotentInspect
Get the latest AI-generated weekly Front Page brief for the workspace
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| brief | Yes | The latest brief, or null if none has been generated yet |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate the tool is read-only, idempotent, and non-destructive. The description adds that the brief is 'latest AI-generated weekly', providing freshness and generation context without contradicting annotations.
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, efficient sentence that conveys all necessary information without any 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?
Given zero parameters, the presence of an output schema, and comprehensive annotations, the description fully covers the tool's purpose and context. No additional information is needed.
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?
There are no parameters, so schema coverage is 100%. The description adds no parameter details, which is appropriate. Baseline for zero parameters is 4.
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 'Get' and the resource 'Front Page brief', specifying it is 'latest AI-generated weekly' and 'for the workspace'. This uniquely identifies the tool among siblings like get_blog_updates or get_competitive_insights.
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 retrieving the front page brief. While it does not explicitly state when not to use or provide alternatives, the available sibling tools cover distinct content types, making the purpose self-explanatory.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_keywordsGet KeywordsBRead-onlyIdempotentInspect
Get keywords with volume, trend direction, and hashtags
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max keywords to return (default 20) | |
| trend | No | Filter by trend direction |
Output Schema
| Name | Required | Description |
|---|---|---|
| keywords | Yes | Keywords and hashtags for the workspace |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and idempotentHint=true, indicating safe, idempotent reads. The description adds that results include volume, trend direction, and hashtags, but does not disclose any additional behavioral traits beyond what annotations imply.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no redundant words. Every element (action, resource, included data) is front-loaded. Efficiently communicates the core 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 tool's simplicity (2 optional params, output schema present, strong annotations), the description is largely complete. It covers the return data shape and basic filtering. Minor gap: no explanation of default behavior when no trend filter is applied.
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?
All parameters have descriptions in the schema (100% coverage). The description repeats 'trend direction' which matches the 'trend' parameter, but adds no semantic nuance beyond the schema. 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 action 'Get' and the resource 'keywords', listing the data returned (volume, trend direction, hashtags). It distinguishes from sibling tools by specifying the resource, though it could more explicitly contrast with tools like get_trending_topics.
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. It does not mention prerequisites, exclusions, or context-specific usage. The agent must infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_newsletter_contentGet Newsletter ContentARead-onlyIdempotentInspect
Get recent newsletter content from subscribed sources
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Look back N days (default 7) | |
| limit | No | Max items (default 10) | |
| source_id | No | Filter by source ID |
Output Schema
| Name | Required | Description |
|---|---|---|
| items | Yes | Recent newsletter items, most recent first |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool as read-only and idempotent. The description adds that content is 'recent' and from 'subscribed sources', providing some behavioral context beyond annotations, but lacks details like pagination or 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 a single, concise sentence that conveys the core functionality without any wasted words. It is front-loaded and efficient.
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 presence of an output schema and sufficient annotations, the description is complete enough for a simple retrieval tool. It captures the essence of time range and source filtering, though it could briefly mention output format.
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% description coverage, so the baseline is 3. The description does not add any parameter-specific meaning beyond what is already in 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 'get' and the resource 'newsletter content from subscribed sources', which is specific and distinct from sibling tools like get_blog_updates or get_x_updates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus its siblings (e.g., get_blog_updates, get_front_page_brief). The description does not include alternatives or context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_patent_filingsGet Patent FilingsARead-onlyIdempotentInspect
Get recent patent filings and grants from monitored companies
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Look back N days (default 30) | |
| limit | No | Max items (default 20) | |
| company | No | Filter by company/assignee name | |
| source_id | No | Filter by source ID |
Output Schema
| Name | Required | Description |
|---|---|---|
| patents | Yes | Recent patent filings, most recent first |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint. The description adds the context 'recent' and 'from monitored companies', which clarifies scope but does not conflict with annotations.
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 concise sentence that is front-loaded and contains no unnecessary words, efficiently conveying the tool's 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 presence of an output schema and comprehensive annotations, the description is functionally complete. It could mention the default 'monitored companies' scope, but the tool is simple enough.
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% parameter description coverage, so the description adds no new meaning beyond stating the overall purpose. The baseline of 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 verb 'Get' and the resource 'recent patent filings and grants from monitored companies', distinguishing it from sibling tools like get_blog_updates and get_competitive_insights.
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 retrieving patent data but does not explicitly specify when to use it vs. alternatives, nor does it provide exclusion criteria or usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_trending_topicsGet Trending TopicsARead-onlyIdempotentInspect
Get trending topics with scores, momentum, and examples
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max topics to return (default 10) | |
| min_score | No | Minimum score threshold (default 0) |
Output Schema
| Name | Required | Description |
|---|---|---|
| topics | Yes | Trending topics ordered by score, highest first |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, establishing a safe and idempotent profile. The description adds value by specifying the return content (scores, momentum, examples), which is beyond structured data.
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 sentence of 9 words, front-loaded with the core function. Every word contributes meaning, with no 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 (2 optional parameters, no nested objects, output schema exists), the description is adequate. It covers the main function and return fields, though omits default values which are already in the 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%, with both parameters fully described in the input schema. The description does not add additional meaning or context for parameters beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Get' with the resource 'trending topics' and lists the returned fields (scores, momentum, examples). It clearly distinguishes from sibling tools like get_blog_updates or get_keywords.
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 explicit guidance on when to use this tool versus alternatives. The description does not mention when not to use it or suggest sibling tools for different cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_x_updatesGet X UpdatesARead-onlyIdempotentInspect
Get recent announcement-style tweets (launches, releases, partnerships, etc.) from tracked X handles
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Look back N days (default 7) | |
| limit | No | Max items (default 10) | |
| source_id | No | Filter by source ID |
Output Schema
| Name | Required | Description |
|---|---|---|
| items | Yes | Recent announcement-style tweets, most recent first |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint. The description adds context about 'announcement-style' filtering and tracked handles, disclosing behavioral traits beyond structured annotations without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no unnecessary words, front-loaded with the core action and resource.
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 is complete for a read-only filtered list tool with an output schema. All relevant aspects (purpose, filtering, data source) are covered without 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 covers 100% of parameters with descriptions. The tool description does not add new semantics beyond the schema, meeting the baseline for high 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 states it retrieves 'recent announcement-style tweets' from tracked X handles, specifying the resource and type. It distinguishes from siblings like get_blog_updates and get_competitive_insights by content focus and source.
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 finding announcements, lacking explicit comparisons with siblings such as 'for blog posts use get_blog_updates'. However, it is clear enough for an AI to infer when to use this tool.
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!