fin-data-mcp CLAUDE.md

fin-data-mcp CLAUDE.md is an instructions file for coding agents from CohenD/fin-data-mcp. It costs 1,618 tokens per session, scanned A, original, MIT.

A project instruction guide for fin-data-mcp-server, a Node package that provides financial market data through the Model Context Protocol (MCP).

In plain words
What is it for?
Guiding work on the server's TypeScript code, builds, type checks, development commands, data tools, and dependency choices.
Why use it?
It records the package's runtime, architecture, commands, tool behavior, and rules that differ from the surrounding workspace.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/cohend/fin-data-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/CohenD/fin-data-mcp

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fin-data-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/cohend/fin-data-mcp/claude-md.svg)](https://agentmods.dev/instructions/cohend/fin-data-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/cohend/fin-data-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/cohend/fin-data-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,618 This file is loaded in full into every session.
When invoked 1,618 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01618 $0.01618
Opus 5 $0.00809 $0.00809
Sonnet 5 $0.00324 $0.00324
Haiku 4.5 $0.00162 $0.00162

Measured 4d ago against content hash 65dfed1a3182, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

fin-data-mcp CLAUDE.md scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

3. Add the key to `config.ts` + `.env.example`. Run build + a curl check.
CLAUDE.md · 112 lines

How it starts

The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.

fin-data-mcp-server — agent guide

A standalone Model Context Protocol server exposing free financial market data across 13 categories. Lives inside the cc-stack workspace but is its own Node package with its own deps. 83 no-key tools (15 providers) always on; optional free keys unlock 7 more providers (up to 110 tools / 22 providers).

Stack / runtime

  • TypeScript + ESM ("type": "module", module: NodeNext). Relative imports MUST use the .js extension (e.g. import { httpGet } from "../lib/http.js").
  • @modelcontextprotocol/sdk over stdio (StdioServerTransport).
  • Zod v3 (^3.25) — pinned for MCP SDK inputSchema (ZodRawShape) compat. This deliberately diverges from the parent repo's Zod 4 convention; do not "upgrade" it without checking the SDK still accepts the raw-shape schemas.
  • No axios/extra HTTP libs — uses native fetch via src/lib/http.ts.

Commands

npm run build        # tsc → dist/   (run before considering work done)
npm run dev          # tsx watch src/index.ts
npm start            # node dist/index.js (stdio)
npx tsc --noEmit     # typecheck (strict + noUncheckedIndexedAccess)
npx tsx scripts/smoke.ts        # core no-key endpoints
npx tsx scripts/smoke-full.ts   # broad sample incl. expanded + chained discovery
npx tsx scripts/mcp-test.ts     # MCP handshake: tools/list, resource, a tool call

Architecture

src/
  index.ts        # stdio entry (never write to stdout — logs go to stderr)
  server.ts       # createServer(): instructions, registers tools w/ annotations,
                  #   structuredContent + CHARACTER_LIMIT truncation, error mapping,
                  #   the fin-data://catalog resource
  config.ts       # all env config (all optional)
  constants.ts    # CHARACTER_LIMIT (~25k), DEFAULT_PAGE_SIZE
  lib/
    http.ts       # httpGet(url, {params,headers,accept,retries,timeoutMs}); HttpError;
                  #   formatHttpError() → actionable messages; sends Accept-Language: en
    cache.ts      # cached(key, fn, ttlMs) in-memory TTL
    tool.ts       # ToolDef + tool() helper (applies read-only annotations centrally)
  providers/
    index.ts      # PROVIDERS registry → allTools (enabled only) + catalog
    <provider>.ts # one file per source; exports `<name>Tools: ToolDef[]`

Read the full file on GitHub · 112 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 112 lines · 1,618 tokens per session scan A 65dfed1a3182

Subscribe to this mod's changes

fin-data-mcp CLAUDE.md is an instructions file published in the GitHub repository CohenD/fin-data-mcp (2 stars, last pushed 2mo ago), licensed MIT. It adds 1,618 tokens to every session, about $0.0081 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories