Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.ABWerks/pequod-mcp

PYPI · PEQUOD-MCP · SCANNED AUG 19

Complete US ETF holdings from SEC N-PORT filings + ticker/CUSIP/FIGI crosswalk. Primary source.

Available components

67 Trust /100
Trust breakdown (6 categories)

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 →

Supply Chain Security100
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • Runs hatchling.build at install time, a recognised native-build step with no shell scripting around it. View diagnostics → Pass
  • 1 of 19 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency32
Schema Quality & AI Usability79
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 665 tokens (~133/item across 5 items; 5 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
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.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.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

pypi · pequod-mcp

# add to Claude Code
claude mcp add abwerks-pequod-mcp -- uvx pequod-mcp
# add to Codex CLI
codex mcp add abwerks-pequod-mcp -- uvx pequod-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "abwerks-pequod-mcp": {
      "type": "local",
      "command": [
        "uvx",
        "pequod-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add abwerks-pequod-mcp --command uvx --arg pequod-mcp
# ~/.hermes/config.yaml
mcp_servers:
  abwerks-pequod-mcp:
    command: "uvx"
    args: ["pequod-mcp"]
// mcp.json
{
  "mcpServers": {
    "abwerks-pequod-mcp": {
      "command": "uvx",
      "args": [
        "pequod-mcp"
      ]
    }
  }
}
Changelog

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.

  • 15 Aug 26 67

    First indexed and scored.

Diagnostics

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 19 Aug 2026 · Analysed pypi/pequod-mcp@0.2.2

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem pypi
Install scripts 1 script
Hook Tier Command
build_backend allowlisted hatchling.build
Dependencies 19 packages
Packages resolved 19
Stale 1
Tree resolution Complete
MCP tools · 5 exposed · ~665 tokens

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.

Tool Tokens
get_etf_holdings ~156

Get the complete holdings of any US-registered ETF via SEC EDGAR. Uses Form N-PORT filings (filed monthly by all US ETFs) as the single, consistent primary source. Each holding includes name, ticker, ISIN, FIGI, LEI, shares, USD value, percent of net assets, country, and currency. (CUSIPs are deliberately not included in output.)

NameTypeReqDescription
cikstringOptional 10-digit SEC CIK (from lookup_cik). Skips the ticker→CIK lookup if provided.
tickerstringyesThe ETF ticker symbol (e.g. 'QQQ', 'SPY', 'SCHD', 'IHDG').

Structured output declared, but exposes no named fields.

No examples provided.

lookup_cik ~145

Look up a ticker's SEC Central Index Key (CIK) and entity metadata. This is the first step before calling get_etf_holdings. The CIK is the SEC's unique identifier for every filing entity. The submissions endpoint also returns the entity name, SIC code, tickers, exchanges, fiscal year end, and addresses. The ticker→CIK mapping comes from SEC's company_tickers.json (covers 10,000+ US tickers), cached on disk with a 24-hour freshness window.

NameTypeReqDescription
tickerstringyesStock or ETF ticker symbol (e.g. 'SCHD', 'QQQ', 'AAPL').

Structured output declared, but exposes no named fields.

No examples provided.

resolve_cusip ~155

Resolve a CUSIP (or SEDOL) identifier to a Yahoo-convention ticker symbol. Queries OpenFIGI (one batched request trying both ID_CUSIP and ID_SEDOL), maps the result to a Yahoo-convention symbol via pure suffix mapping, and verifies the mapping against SEC company_tickers.json name/ticker agreement. A gross name mismatch between OpenFIGI and SEC vetoes the mapping. Note: the CUSIP is accepted as INPUT only — tool outputs carry ticker/ISIN/FIGI identifiers, never CUSIPs.

NameTypeReqDescription
cusipstringyesA 9-character CUSIP (or 7-character SEDOL) identifier.

Structured output declared, but exposes no named fields.

No examples provided.

resolve_figi ~89

Resolve a Bloomberg FIGI (Financial Instrument Global Identifier) to a Yahoo-convention ticker symbol. Queries OpenFIGI, maps the exchange code to a Yahoo suffix (pure string mapping), and verifies the mapping against SEC company_tickers.json name/ticker agreement.

NameTypeReqDescription
figistringyesA Bloomberg FIGI identifier (e.g. 'BBG000BVRVT1').

Structured output declared, but exposes no named fields.

No examples provided.

resolve_ticker ~120

Resolve a raw ticker symbol to its Yahoo-convention equivalent. Applies exchange suffix mapping and known manual fixes as a pure string transformation (no Yahoo network calls), then verifies the mapping against SEC company_tickers.json and/or OpenFIGI.

NameTypeReqDescription
exchange_codestringOptional exchange code — MIC format like 'XASX' or short format like 'AU', 'LN', 'SW', 'JP'.
symbolstringyesRaw ticker symbol (e.g. 'AAPL', 'SCMN', 'BHP').

Structured output declared, but exposes no named fields.

No examples provided.