io.github.ravi-p-k-1/insightiq
NPM · INSIGHTIQ-MCP · SCANNED SEP 21
Look up real FRED (Federal Reserve Economic Data) series and historical observations.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score → Why this is hard to score →
Supply Chain Security98
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- No install/post-install scripts declared.Pass
- 31 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency32
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- License check failed: the license (CC0-1.0) isn't a recognized OSI-approved license. See how to fix → Fail
- Actively maintained (last published 3 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability70
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 819 tokens (~204/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Tool Safety100
- No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
- We read all 4 captured tool definition(s), and no name or description among them implies an irreversible operation.Pass
- An AI judge read all 4 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
How do I install the io.github.ravi-p-k-1/insightiq MCP server?
io.github.ravi-p-k-1/insightiq runs locally as an npm package, launched with npx -y insightiq-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.
npm · insightiq-mcp
claude mcp add ravi-p-k-1-insightiq -- npx -y insightiq-mcp
{
"mcpServers": {
"ravi-p-k-1-insightiq": {
"command": "npx",
"args": [
"-y",
"insightiq-mcp"
]
}
}
} {
"servers": {
"ravi-p-k-1-insightiq": {
"command": "npx",
"args": [
"-y",
"insightiq-mcp"
]
}
}
} codex mcp add ravi-p-k-1-insightiq -- npx -y insightiq-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"ravi-p-k-1-insightiq": {
"type": "local",
"command": [
"npx",
"-y",
"insightiq-mcp"
],
"enabled": true
}
}
} openclaw mcp add ravi-p-k-1-insightiq --command npx --arg -y --arg insightiq-mcp
mcp_servers:
ravi-p-k-1-insightiq:
command: "npx"
args: ["-y", "insightiq-mcp"] {
"McpServers": {
"ravi-p-k-1-insightiq": {
"Transport": "stdio",
"Command": "npx",
"Arguments": [
"-y",
"insightiq-mcp"
]
}
}
} assistant mcp add ravi-p-k-1-insightiq -t stdio -c npx -a -y insightiq-mcp
{
"mcpServers": {
"ravi-p-k-1-insightiq": {
"command": "npx",
"args": [
"-y",
"insightiq-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 18 Sept 26 66
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 21 Sept 2026 · Analysed npm/insightiq-mcp@1.0.2
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | npm |
Background: How many MCP packages publish verified provenance →
Dependencies 96 packages
| Packages resolved | 96 |
|---|---|
| Stale | 31 |
| Tree resolution | Complete |
Background: SBOMs and build attestations, explained →
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →
get_economic_data Get economic data for a question ~283
Convenience tool that chains search_economic_series and get_series_observations in one call: searches FRED for series relevant to a question, then fetches their observations. Returns raw retrieved data only (series, units, observations) — you (the calling agent) should analyze this data yourself and write the explanation, this tool does not generate one. For better recall on vague questions, optionally pass searchQueries with 1-3 concise FRED-style keyword phrases; otherwise the question itself is used as the search text.
| Name | Type | Req | Description |
|---|---|---|---|
| excludeTags | array | – | Optional FRED tag names that returned series must NOT have (e.g. ["nsa"] to exclude seasonally-unadjusted series). |
| limit | integer | – | Maximum number of series to search for and fetch data on. Defaults to 4. |
| question | string | yes | The natural-language economic question being asked. |
| searchQueries | array | – | Optional: 1-3 concise search phrases to use instead of the raw question, e.g. ["inflation", "consumer price index"]. |
| tags | array | – | Optional FRED tag names that returned series must ALL have (e.g. ["usa", "state"] to force state-level series). Use list_series_tags first to find valid tag names for your topic — an unrecognized tag… |
No output schema declared.
No examples provided.
get_series_observations Get series observations ~85
Fetch historical annual observations and units for specific real FRED series IDs. Returns raw retrieved data only — it does not generate any explanation or analysis. Use search_economic_series first to find real series IDs, then interpret the returned observations yourself to answer the user's question.
| Name | Type | Req | Description |
|---|---|---|---|
| series | array | yes | FRED series to fetch, typically the output of search_economic_series. |
No output schema declared.
No examples provided.
list_series_tags List series tags ~189
Discover the FRED tags that actually exist among series matching a topic, and how many series each tag covers. Use this before narrowing search_economic_series or get_economic_data with tags/excludeTags — FRED tag names are a controlled vocabulary (geography codes, "sa"/"nsa" for seasonal adjustment, frequency like "monthly") that usually cannot be guessed reliably, so guessing a wrong tag name silently returns zero results instead of erroring. Common tag groups include geography (e.g. "usa", "state", state postal codes like "tx"), seasonal adjustment ("sa", "nsa"), and frequency ("monthly", "quarterly", "annual").
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | – | Maximum number of tags to return, ordered by how many series they cover. Defaults to 20. |
| query | string | yes | A concise topic phrase, e.g. "unemployment rate". |
No output schema declared.
No examples provided.
search_economic_series Search economic series ~262
Search FRED (Federal Reserve Economic Data) for real economic data series matching a topic. Returns real FRED series IDs and titles only — never invents series IDs. Provide 1-3 concise, FRED-style keyword phrases (e.g. "consumer price index", "Texas unemployment rate"), not a full conversational question — FRED search matches every word in a phrase, so short, specific phrases work far better than full sentences. Include likely synonyms or named entities (a state, a specific indicator name) as separate phrases to improve recall.
| Name | Type | Req | Description |
|---|---|---|---|
| excludeTags | array | – | Optional FRED tag names that returned series must NOT have (e.g. ["nsa"] to exclude seasonally-unadjusted series). |
| limit | integer | – | Maximum number of series to return. Defaults to 4. |
| queries | array | yes | 1 to 3 concise economic search phrases, e.g. ["inflation", "consumer price index"]. |
| tags | array | – | Optional FRED tag names that returned series must ALL have (e.g. ["usa", "state"] to force state-level series). Use list_series_tags first to find valid tag names for your topic — an unrecognized tag… |
No output schema declared.
No examples provided.
What is the io.github.ravi-p-k-1/insightiq MCP server?
io.github.ravi-p-k-1/insightiq is an MCP server listed in the public MCP registry as io.github.ravi-p-k-1/insightiq. Look up real FRED (Federal Reserve Economic Data) series and historical observations. This page covers its npm package (insightiq-mcp).
Is the io.github.ravi-p-k-1/insightiq MCP server safe to use?
io.github.ravi-p-k-1/insightiq scores 66 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 21 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.
What tools does the io.github.ravi-p-k-1/insightiq MCP server expose?
io.github.ravi-p-k-1/insightiq exposes 4 tools: search_economic_series, get_series_observations, get_economic_data, list_series_tags. Their descriptions and schemas cost roughly 819 tokens of context every time the server is loaded.
Is the io.github.ravi-p-k-1/insightiq MCP server still maintained?
io.github.ravi-p-k-1/insightiq is still listed as active in the MCP registry. We last reached this channel on 21 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.
What licence is the io.github.ravi-p-k-1/insightiq MCP server under?
io.github.ravi-p-k-1/insightiq declares the CC0-1.0 licence, which is not on the OSI-approved list. Read the terms before using it at work, and note this covers the source only, not the cost of any service it calls.