MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQChangelog

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace Β© 2026. All rights reserved.

Back to Browse

Valuein MCP Server

by Valuein
Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

SEC EDGAR fundamentals, ratios, valuation, and filings for AI agents. Point-in-time safe.

About

SEC EDGAR fundamentals, ratios, valuation, and filings for AI agents. Point-in-time safe.

Remote endpoints: streamable-http: https://mcp.valuein.biz/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 0 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

15 tools verified Β· Open access Β· No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-valuein-mcp-sec-edgar": {
      "url": "https://mcp.valuein.biz/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Valuein Logo

PyPI version Python 3.10+ License MCP Registry

πŸ’Ž Valuein β€” Community, Docs, and Discovery Hub

This repository is the public home for Valuein's SEC EDGAR fundamentals data product. It is the place to:

  • Find documentation (methodology, data catalog, compliance, SLA, Excel guide)
  • Run examples and notebooks that connect to our live data
  • Open support tickets, bug reports, and feature requests
  • Discover our distribution channels β€” the Python SDK, the MCP server, the Excel template, and the REST API

The source code for the SDK, MCP server, and data pipeline lives in dedicated repositories. This repo is the front door.


πŸ“¦ The Data Product

Survivorship-bias-free, point-in-time US fundamentals sourced from SEC EDGAR:

  • 12M+ filings (10-K, 10-Q, 8-K, 20-F + amendments), 1990–present
  • 108M+ facts across 10,000+ active and delisted US entities
  • 11,966 XBRL tags normalized to ~150 canonical standard_concept values
  • Cloud Parquet on Cloudflare R2 β€” stream with DuckDB, no local downloads

Why it's different

FeatureWhy it matters
πŸ•’ Point-in-Time (PIT)Every fact carries filing_date and knowledge_at β€” no look-ahead bias in backtests
βš–οΈ Survivorship-bias freeDelisted, bankrupt, acquired companies included
πŸ“Š Standardized concepts11,966 raw XBRL tags mapped to canonical names (both are on the fact table)
πŸš€ DuckDB nativeMillisecond analytics via httpfs against remote Parquet
☁️ Zero-setuppip install and query β€” no database provisioning, no large downloads

🚚 Distribution Channels

We deliver the same underlying data through five interfaces so it lands wherever you already work.

ChannelForHow to get it
Python SDKQuants, engineers, data scientistspip install valuein-sdk Β· PyPI
MCP ServerAI agents (Claude, Cursor, Codex, etc.)https://mcp.valuein.biz/mcp Β· see MCP Discovery
Excel / Power QueryFinancial analysts, CPAs, researchersExcel setup guide
Web DashboardNon-technical users, retail, executivesvaluein.biz
REST APIB2B partners, third-party integrationshttps://data.valuein.biz β€” contact us for the integration guide

All channels authenticate with the same Stripe-issued API token and share the same tier model.


πŸ’³ Plans & Access

PlanCoverageDataPriceGet Access
SampleS&P 500 Β· last 5 years Β· active + inactivePublic, read-onlyFreeNo registration β€” works out of the box
S&P 500S&P 500 Β· full history Β· active + inactiveFull Parquet accessFreeRegister
ProFull US universe Β· all core fundamentalsFull Parquet access$200 / monthSubscribe
Pro (Annual)Same as Pro Β· 20% discountFull Parquet access$1,920 / yearSubscribe

One token unlocks the SDK, MCP, Excel, and REST API β€” no per-channel billing.


⚑ Quickstart β€” Python SDK

1. Install

pip install valuein-sdk

2. Query real data without a token (Sample tier, no registration):

from valuein_sdk import ValueinClient

with ValueinClient() as client:
    print(client.me())                               # {plan, status, email, createdAt}
    print(client.manifest())                         # snapshot metadata
    print(client.tables())                           # loaded table names
    print(client.get_schema("fact"))                 # column β†’ DuckDB type

    df = client.query("SELECT COUNT(*) FROM entity")
    print(df)

3. Unlock the full dataset β€” add a token, no code changes needed:

echo 'VALUEIN_API_KEY="your_token_here"' >> .env

4. Production pattern β€” context manager, typed errors, pre-built SQL templates:

from valuein_sdk import ValueinClient, ValueinError

with ValueinClient() as client:
    try:
        df = client.run_template(
            "fundamentals_by_ticker",
            ticker="AAPL",
            start_date="2020-01-01",
            end_date="2024-01-01",
            form_types=["10-K", "10-Q"],
            metrics=["TotalRevenue", "NetIncome", "OperatingCashFlow"],
        )
        print(df)
    except ValueinError as e:
        print(f"SDK error: {e}")

πŸ—‚οΈ Data Model Essentials

Full schema in docs/schema.json and docs/data_catalog.md.

TableDescriptionRecords
referencesStart here. Flat join of entity + security + index_membership. One row per security with is_sp500, is_active, sector, exchange. Replaces 3-table joins.~7K
entityCompany metadata19K+
securityTicker history (SCD Type 2)7K+
filingFiling metadata (10-K, 10-Q, 8-K, 20-F + amendments)12M+
factFinancial statement facts β€” raw concept + canonical standard_concept on every row108M+
valuationTwo-stage DCF + DDM intrinsic values per entity per period19K+
taxonomy_guide2026 US GAAP Taxonomy Guide11,966
index_membershipHistorical index entry/exit dates8K+

Key joins

references.cik               β†’ entity.cik
security.entity_id           β†’ entity.cik
filing.entity_id             β†’ entity.cik
fact.entity_id               β†’ entity.cik
fact.accession_id            β†’ filing.accession_id
index_membership.security_id β†’ security.id

Date columns β€” which to use when

ColumnTableUse for
report_date / period_endfiling / factFiscal calendar alignment
filing_datefilingPIT backtest filter β€” when the SEC received the filing
knowledge_atfactMillisecond-precision PIT for intraday research

For cross-company backtests, always filter by filing_date <= trade_date. Using report_date introduces look-ahead bias.

Canonical standard_concept names

Query fact.standard_concept with canonical names like 'TotalRevenue', 'NetIncome', 'OperatingCashFlow', 'CAPEX', 'StockholdersEquity' β€” not raw XBRL tags ('Revenues', 'NetIncomeLoss', 'Assets'). The full canonical list lives in docs/data_catalog.md.

DuckDB query patterns that pay off

Start from references β€” zero joins for cross-company filters:

SELECT symbol, name, sector
FROM   references
WHERE  is_sp500 = TRUE AND is_active = TRUE AND sector ILIKE '%technology%'

LATERAL for the latest filing per company:

JOIN LATERAL (
    SELECT accession_id FROM filing
    WHERE  entity_id = r.cik AND form_type = '10-K'
    ORDER  BY filing_date DESC LIMIT 1
) f ON TRUE

Pivot multiple concepts in one fact scan:

SELECT
  MAX(CASE WHEN standard_concept = 'TotalRevenue'       THEN numeric_value END) AS revenue,
  MAX(CASE WHEN standard_concept = 'StockholdersEquity' THEN numeric_value END) AS equity
FROM   fact
WHERE  standard_concept IN ('TotalRevenue', 'StockholdersEquity')
GROUP  BY accession_id

Cash flow items: use COALESCE(derived_quarterly_value, numeric_value) β€” Q2/Q3 10-Qs report YTD, this column isolates the quarter. CAPEX sign varies by filer β€” always ABS(capex).


🐍 Examples in this Repository

All examples work against the SDK published on PyPI. The Sample tier runs without a token.

Python scripts (examples/python/)

ScriptLevelWhat it shows
getting_started.pyBeginnerFirst query, token check, entity counts by sector
usage.pyReferenceEvery public SDK method demonstrated
entity_screening.pyBeginnerScreen by sector, SIC code, active vs inactive
financial_analysis.pyIntermediateRevenue trends, margins, peer comparison
pit_backtest.pyIntermediateCorrect PIT discipline, restatement impact
survivorship_bias.pyIntermediateDelisted companies, index membership, bias quantification
production-ready.pyAdvancedService pattern for FastAPI / Celery / Airflow integrations

Run any example:

# Sample tier β€” no token needed
python examples/python/getting_started.py

# Paid tier
VALUEIN_API_KEY=xxx python examples/python/pit_backtest.py

Jupyter notebooks (examples/notebooks/)

NotebookOpen in Colab
QuickstartOpen in Colab
Fundamental AnalysisOpen in Colab
PIT BacktestOpen in Colab
Survivorship BiasOpen in Colab

πŸ›‘οΈ Error Handling

The SDK exposes typed exceptions so your code can react appropriately to each failure mode:

from valuein_sdk import (
    ValueinClient,
    ValueinAuthError,      # HTTP 401/403 β€” invalid or expired token
    ValueinPlanError,      # HTTP 403 β€” endpoint requires a higher plan
    ValueinNotFoundError,  # HTTP 404 β€” table or endpoint does not exist
    ValueinRateLimitError, # HTTP 429 β€” includes .retry_after (seconds)
    ValueinAPIError,       # HTTP 5xx β€” includes .status_code
)

with ValueinClient() as client:
    try:
        df = client.query("SELECT * FROM fact LIMIT 1000")
    except ValueinAuthError:
        print("Check your VALUEIN_API_KEY β€” it may be expired or invalid.")
    except ValueinPlanError:
        print("This query requires a higher-tier plan. Upgrade at valuein.biz.")
    except ValueinRateLimitError as e:
        print(f"Rate limited. Retry allowed in {e.retry_after}s.")
    except ValueinAPIError as e:
        print(f"Gateway error (status {e.status_code}).")

πŸ“Š Excel Integration

Stream SEC fundamentals straight into Excel via Power Query β€” no Python, no scripts.

Requirements: Microsoft 365 (build 16.0.17531+) and an active API token.

Quick path:

  1. Get the template β€” follow the download link in docs/excel-guide.md
  2. Open in Excel β€” enable editing and content
  3. Paste your token into the START HERE sheet
  4. Click Data > Refresh All

The workbook ships with 8 pre-configured sheets: Income Statement, Balance Sheet, Cash Flow, Entities, Securities, Filings, Index Membership, and the Data Dictionary. The full walkthrough β€” including token setup, Named Ranges, refresh troubleshooting, and the Power Query M-language internals β€” is in docs/excel-guide.md.

On Excel 2019 or earlier, Parquet.Document() is unavailable; email support@valuein.biz for CSV exports.


πŸ€– MCP Discovery β€” AI Agents

Valuein's MCP server exposes SEC EDGAR fundamentals to any MCP-capable AI agent (Claude, Cursor, Codex, and the wider agent ecosystem).

  • Endpoint: https://mcp.valuein.biz/mcp (Streamable HTTP, MCP spec 2025-11-25)
  • Auth: Authorization: Bearer <your_api_token> β€” the same token used by the SDK and Excel
  • Manifest: server.json in this repo is the source of truth for the registry listing
  • Registry: registry.modelcontextprotocol.io β€” search for io.github.valuein/mcp-sec-edgar

Tools exposed

ToolDescriptionAvailable in
search_companiesTicker / name / CIK lookupAll plans
get_sec_filing_linksDirect links to 10-K, 10-Q, 8-K, 20-F on SEC EDGARAll plans
get_company_fundamentalsAnnual (all plans) or quarterly + extended history (Pro)Free β†’ Pro
get_financial_ratiosMargins, returns, leverage, efficiency ratiosPro
get_dcf_inputsRaw inputs for two-stage DCF + DDM modelsEnterprise

Configure in an AI client

Claude Desktop β€” add to claude_desktop_config.json:

{
  "mcpServers": {
    "valuein": {
      "url": "https://mcp.valuein.biz/mcp",
      "headers": { "Authorization": "Bearer YOUR_VALUEIN_API_KEY" }
    }
  }
}

Any MCP-compliant client that supports Streamable HTTP remotes will work with the same URL + Bearer token.


πŸ“š Documentation

Everything in docs/ is kept in sync with the production data.

DocumentWhat's in it
docs/METHODOLOGY.mdSourcing, PIT architecture, restatement handling, XBRL normalization
docs/COMPLIANCE_AND_DDQ.mdData provenance, MNPI policy, PIT integrity, security, SLA summary
docs/SLA.mdUptime targets, data freshness, support response times, SLA credits
docs/excel-guide.mdFull Excel / Power Query setup walkthrough
docs/data_catalog.mdCanonical standard_concept names and definitions
docs/DATA_CATALOG.xlsxSame catalog as a workbook β€” columns, types, sample values
docs/schema.jsonMachine-readable table + column schema

πŸ’¬ Support & Community

GitHub Issues is the primary support channel. Four templates cover the common cases:

I want to…Open
Report incorrect or suspicious dataData Quality Report
Request a feature, concept, or datasetFeature Request
Report an outage or degraded serviceService Outage
Ask a general questionGeneral Question

For private or contractual matters (DPAs, procurement, DDQs, enterprise SLAs): support@valuein.biz.

Contributions β€” examples, notebook improvements, documentation fixes β€” are welcome. See CONTRIBUTING.md for the workflow and style guide.


πŸ“„ License & Disclosure

Apache 2.0. See NOTICE for attribution.

This repository is provided for research and educational purposes. It is not investment advice. No warranty of fitness for any particular trading, investment, or regulatory purpose is implied.

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source CodeDocumentationRemote Endpoint

Details

Published April 21, 2026
Version 2.0.0
0 installs
Remote Plugin

More Developer Tools MCP Servers

Git

Free

by Modelcontextprotocol Β· Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
3
Installs
6.5
Security
No ratings yet
Local

Toleno

Free

by Toleno Β· Developer Tools

Toleno Network MCP Server β€” Manage your Toleno mining account with Claude AI using natural language.

114
Stars
401
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace Β· Developer Tools

Create, build, and publish Python MCP servers to PyPI β€” conversationally.

-
Stars
55
Installs
10.0
Security
5.0
Local

MarkItDown

Free

by Microsoft Β· Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

89.9K
Stars
14
Installs
6.0
Security
5.0
Local

mcp-creator-typescript

Free

by mcp-marketplace Β· Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm β€” conversationally

-
Stars
13
Installs
10.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace Β· Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
13
Installs
10.0
Security
No ratings yet
Local