Skip to main content
Glama

veris

npm version license · npx -y veris-mcp

Provenance-first web access for AI agents. Clean content plus verifiable source metadata, in one call.

Today an AI agent reading the web gets a wall of text. It does not get: when the page was published, whether the content changed since last time, who wrote it, the canonical source, or the license terms. veris attaches all of that to every read.

web_read("https://example.com/article")
  → clean markdown
  + { publishedAt, modifiedAt, author, canonicalUrl, contentHash, license, fetchedAt }

That metadata is not a nice-to-have. It is the foundation the rest of the AI-web economy needs: freshness, change-detection, citation, and — eventually — paying the people who wrote the content.


Why this exists

The web is being scraped by AI with no attribution and no payment. Publishers are responding by blocking bots and locking content. AI gets worse; publishers lose. The fix is a layer between agents and publishers that reads cleanly, tracks provenance, and (later) settles payment.

veris is the agent-side of that layer — the SDK every agent imports to consume the web responsibly. Think "Plaid for the AI web": you don't own the publishers, you own the integration developers reach for.

Related MCP server: cleanfetch

Roadmap (one codebase, three stages)

Stage

What

Status

1. Clean + provenance

search / read / research with verifiable source metadata

2. Finance vertical

SEC EDGAR filings with authoritative, official provenance

3. Settlement

license-aware access + micropayment + attribution

🔜 seams in policy.ts + cache.ts

The Stage 3 seams already exist in the code (policy.ts, cache.ts) so growth is additive, not a rewrite.

Tools

Web

Tool

Does

web_search(query, n?)

Ranked results as structured JSON. Brave (with key) or keyless DuckDuckGo.

web_read(url, fresh?)

URL → clean markdown + provenance block. 24h cache.

web_research(query, n?)

Search + read top N + bundle with per-source citations.

Finance — SEC EDGAR (free, official, no API key)

Tool

Does

finance_filings(query, formType?, limit?)

Ticker / name / CIK → recent SEC filings: form, official filing & report dates, accession, direct document URL.

finance_filing_read(url or query, formType?)

Read a filing by URL, or auto-read the latest matching form for a company. Clean text + provenance.

finance_financials(query)

Revenue, net income, total assets, cash, diluted EPS from SEC XBRL — each figure stamped with the exact filing it came from.

Why EDGAR first? Filings carry authoritative dates and identifiers straight from the SEC — provenance isn't guessed, it's official. Free, structured, no auth. One call gets an agent the latest 10-K with a verifiable source:

finance_filing_read({ query: "NVDA", formType: "10-K" })
  → NVIDIA CORP — 10-K (filed 2026-02-25)
    clean text + { source, filed date, contentHash, wordCount }

Watch — change detection & alerts

Tool

Does

watch_manage(action, target?, formType?)

Add/remove/list watches: a company's SEC filings (ticker + optional form like 8-K) or any URL (content-hash watch).

watch_check()

Check all watches; returns only what's NEW (new filings / changed pages) and rolls baselines forward. Run it on a schedule → alert feed.

Install

npx -y veris-mcp        # zero-install, always latest

Or from source:

git clone https://github.com/jakeyoung1/veris && cd veris
npm install && npm run build

Optional env:

export BRAVE_API_KEY=your_key                      # better search; https://search.brave.com/app/keys
export SEC_USER_AGENT="Your Name you@email.com"    # SEC fair-access policy (recommended)

Without a Brave key, search falls back to keyless DuckDuckGo automatically. SEC requires a Name email@domain style User-Agent — veris ships a default, but set your own contact.

Use in Claude Code

Add to your MCP config (.mcp.json):

{
  "mcpServers": {
    "veris": {
      "command": "npx",
      "args": ["-y", "veris-mcp"],
      "env": { "BRAVE_API_KEY": "optional", "SEC_USER_AGENT": "Your Name you@email.com" }
    }
  }
}

Restart Claude Code, then ask it to web_research something.

Remote server (HTTP)

Run veris as a remote MCP server (Streamable HTTP) and connect from any MCP client by URL:

npx -y veris-mcp http                            # http://127.0.0.1:8787/mcp
VERIS_HTTP_HOST=0.0.0.0 npx -y veris-mcp http    # expose it (put TLS in front)

Env

Does

VERIS_PORT / PORT

Port (default 8787)

VERIS_HTTP_HOST

Bind host (default 127.0.0.1)

VERIS_API_KEYS

Comma-separated keys. If set, /mcp requires Authorization: Bearer <key> (or x-api-key). Unset = open.

VERIS_RATE_LIMIT

Requests/min/IP (default 60)

Self-hosting is free, forever. VERIS_API_KEYS exists so a hosted instance can be metered.

Docker

docker build -t veris .
docker run -p 8787:8787 veris

Works as-is on Fly.io / Render / Railway — anything that runs a Dockerfile.

Design notes

  • Provenance from raw HTML. We fetch the page ourselves and pull dates/author/canonical from <meta>, JSON-LD, and Open Graph before readability strips them.

  • Content hash. sha256 of extracted text — detects whether a page changed and enables dedupe across agents (the basis for a shared web index).

  • Provider interface. Swap search backends without touching tool code.

  • Cache → ledger. The same keyed store that caches reads today records read events for settlement tomorrow.

License

MIT

Available Tools

8 tools
finance_filing_readRead SEC FilingA

Fetch and clean a specific SEC filing. Pass a filing document URL, OR a company query plus formType to auto-read the most recent matching filing (e.g. latest 10-K for NVDA). Returns clean text plus provenance.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoEDGAR filing document URL
queryNoTicker/name/CIK (used when url is omitted)
formTypeNoForm to auto-pick with query, e.g. "10-K"

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the 'clean' action, that it returns 'clean text plus provenance', and the auto-read behavior. However, it lacks disclosure about edge cases (e.g., when no matching filing is found, or if both url and query are provided) and does not mention any potential rate limits or authorization requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core function, and includes an illustrative example without any filler. Every clause contributes essential information, making it highly efficiently structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema and no annotations, the description covers the two usage modes, the return value (clean text plus provenance), and gives an example. It could further elaborate on what 'clean' entails or what 'provenance' includes, but it is sufficiently complete for the tool's moderate complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes all three parameters at 100% coverage, so the baseline is 3. The description adds meaningful context by explaining the OR relationship between url and query+formType, and provides a concrete example, which goes beyond the schema's individual property descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Fetch and clean') and the resource ('a specific SEC filing'). It also distinguishes from siblings like finance_filings by focusing on specific filing retrieval and mentioning the auto-read mode and provenance, making the tool's purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly outlines two usage modes: pass a URL directly, or provide a company query plus formType to auto-read the most recent matching filing, with the example 'latest 10-K for NVDA'. This provides clear context on when to use each, but it does not explicitly mention alternatives or exclusions relative to sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

finance_filingsSEC Filings (EDGAR)A

List a company's recent SEC filings from EDGAR by ticker, name, or CIK. Free, official, no API key. Returns form type, filing/report dates, accession number, and direct document URL — provenance is authoritative (straight from SEC).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax filings (default 10)
queryYesTicker (e.g. NVDA), company name, or CIK
formTypeNoFilter by form, e.g. "10-K", "10-Q", "8-K"

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses that the tool is 'Free, official, no API key', lists the exact returned fields (form type, dates, accession number, URL), and establishes authoritative provenance. It omits details like rate limits or error behavior, but for a read-only listing tool this is sufficient disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that states the action, resource, query methods, and key value propositions (free, official, no API key) without wasted words. Every part contributes essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema and no annotations, the description is quite complete: it explains the purpose, input methods, output contents, and source reliability. It doesn't explicitly mention pagination or edge cases, but given the simplicity (3 params, one required) and the presence of a sibling read tool, coverage is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with each parameter having a description. The tool description adds no new semantic information beyond the schema—it repeats the query types and implies recency, but the schema already documents ticker/name/CIK and limit. Baseline 3 is appropriate since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool 'List a company's recent SEC filings from EDGAR' with the query options (ticker, name, or CIK). This specific verb+resource combination distinguishes it from sibling tools like finance_filing_read (which reads a specific filing) and finance_financials (which likely fetches financial data).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by specifying the listing function and output, but it does not explicitly state when to use this tool versus alternatives or mention exclusions. The mention of returning a 'direct document URL' hints at pairing with a read tool, but this is not made explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

finance_financialsCompany Financials (SEC XBRL)A

Key structured financials (revenue, net income, total assets, cash, diluted EPS) from SEC XBRL data. Each figure is stamped with the exact filing it came from (form, filed date, accession, fiscal period) — authoritative provenance. Ticker / name / CIK. No API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesTicker (e.g. NVDA), company name, or CIK

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It adds valuable context by noting each figure is stamped with exact filing provenance and that no API key is required. It does not disclose potential limitations such as coverage gaps for non-XBRL filers or how recent the data is, but the provenance detail provides meaningful transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the key financial outputs, followed by provenance and input details. Every sentence contributes essential information with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool with no output schema, the description covers the core aspects: what data is returned, provenance, accepted input types, and access requirements. It does not explicitly mention whether the result covers a single fiscal period or a range, but the essentials are sufficient for an agent to know what to expect.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema fully documents the single 'query' parameter with a description covering ticker, company name, or CIK. The description repeats this information without adding further nuance, so it neither enhances nor detracts from the schema's already high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as returning key structured financial metrics (revenue, net income, total assets, cash, diluted EPS) from SEC XBRL data, with authoritative provenance. It does not use an explicit verb like 'get' or 'retrieve', but the resource and scope are specific and distinguish it from sibling tools dealing with filings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives helpful usage context by stating accepted input types (ticker, name, CIK) and that no API key is needed. However, it does not explicitly compare this tool to siblings like finance_filings or finance_filing_read, so when to choose this over alternatives is implied rather than stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

watch_checkCheck Watches (alerts)A

Check every watch for changes since the last check: new SEC filings, changed page content. Returns only what's new and rolls baselines forward. Run it on a schedule (cron / scheduled agent) to turn veris into an alert feed. Note: the SEC filing index may lag up to ~1h (cache).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full responsibility for behavioral disclosure. It goes beyond a simple 'check' by revealing that it 'returns only what's new and rolls baselines forward'—a stateful side effect that is critical for an agent to understand. It also honestly notes the SEC filing index may lag up to ~1h (cache), setting correct expectations for freshness.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each earning its place: the first states the function, the second explains the behavioral side effect, and the third gives usage guidance and a caveat. It is front-loaded with the core purpose and avoids any filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter tool with no output schema, the description is remarkably complete. It covers what the tool does, what it returns ('only what's new'), when to use it (scheduled runs), and an important limitation (cache lag). No significant gaps remain for an agent to invoke it safely.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there is no parameter surface to document. The description adds context about what the tool checks (all watches, since last check), which leverages the input schema fully (100% coverage by virtue of being empty). This meets the baseline for a no-parameter tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Check' and clearly identifies the resource ('every watch') and scope ('for changes since the last check'). It explicitly mentions what is checked (new SEC filings, changed page content) and contrasts with sibling tools like watch_manage, making its purpose unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides concrete guidance: 'Run it on a schedule (cron / scheduled agent) to turn veris into an alert feed.' This tells the agent when to use the tool. While it does not explicitly name alternatives or exclusions, the context is clear enough that an agent would not confuse it with web_search or finance_filings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

watch_manageManage Watches (change-detection)A

Add, remove, or list watches. Watch a company's SEC filings (target = ticker/name/CIK, optional formType like 8-K) or any URL (target = https://…, watched by content hash). Adding baselines current state; use watch_check later to see only what's new.

ParametersJSON Schema
NameRequiredDescriptionDefault
actionYesWhat to do
targetNoTicker/name/CIK, URL, or watch id (for remove)
formTypeNoOptional form filter for filings watches, e.g. "8-K"

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description discloses important behavioral traits: 'Adding baselines current state' indicates that add sets a baseline and does not immediately report changes, and 'watched by content hash' explains the mechanism for URLs. It does not mention authorization, rate limits, or response formats, but the disclosed behaviors are significant beyond what the schema shows.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, with the action front-loaded in the first sentence. Each subsequent sentence adds essential context without redundancy, making it concise and well structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the tool's domain, the two watch types, and the baseline behavior, which is adequate for a simple CRUD tool. However, it does not describe return values (e.g., what list returns or what add/remove return), and there is no output schema to compensate. Overall it is quite complete but not fully.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers all parameters with descriptions, but the description elaborates on target by specifying that it can be a ticker/name/CIK or a URL, and clarifies that formType applies to filings watches. This adds contextual meaning beyond the schema, so a 4 is warranted.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description begins with 'Add, remove, or list watches,' clearly stating the verb and resource. It further explains that watches can target SEC filings or URLs, and distinguishes itself from the sibling tool watch_check by noting that watch_check is used later to see what's new. This makes the purpose unmistakable and differentiates it from related tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides context on what kinds of targets are supported (ticker/name/CIK for filings, https:// URLs for content hash), and explicitly recommends using watch_check later to see changes. It does not enumerate alternative tools for other purposes, but the guidance for when to use this tool is clear. A 4 is appropriate because it lacks explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

web_readWeb Read (provenance-tracked)A

Fetch a URL and return clean markdown PLUS provenance: published date, author, canonical URL, content hash, fetch time, and license signals. The provenance is the point — verifiable source metadata an AI normally cannot get.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesURL to read
freshNoBypass cache and refetch (default false)

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations available, the description carries the burden. It discloses the output (clean markdown plus provenance details) and the core value, but does not address error behavior, redirects, rate limits, or limitations. It is adequate but not deeply transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the main action, and each word adds value. No fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with two parameters, no output schema, and no annotations, the description covers the core functionality and unique value proposition well. It could be slightly more complete by noting error scenarios or typical use cases, but it is largely sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for both parameters (url and fresh). The description adds no new parameter-specific meaning beyond the schema, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Fetch' with a clear resource ('a URL') and emphasizes the provenance-tracking distinction, which sets it apart from siblings like web_search and web_research.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The context is clear: use when you have a URL and want clean markdown with verifiable provenance. It doesn't explicitly mention alternatives, but the purpose is unambiguous. No exclusions are stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

web_researchWeb Research (search + read + cite)A

One-shot research: search the web, fetch the top results, and return their clean content bundled with full provenance per source. Ideal for grounding an answer with citations.

ParametersJSON Schema
NameRequiredDescriptionDefault
nNoSources to read (default 3)
queryYesResearch question or topic

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must convey behavioral traits. It discloses the pipeline (search, fetch, clean, provide provenance) and output nature. However, it leaves 'top results' ambiguous and does not mention potential latency, failure modes, or what 'clean content' entails.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences deliver all key information: the action, the output, and the ideal use case. No redundant filler or restatement of the title.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema, the description sufficiently explains the return value (clean content with provenance) and when to use it. It does not over-explain; the schema covers parameter details. Minor omissions about practical limitations are acceptable given the concise scope.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Both parameters are fully described in the schema (query and n with default 3). The description adds no parameter-specific meaning beyond the schema, so it only meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific multi-step action: 'search the web, fetch the top results, and return their clean content bundled with full provenance per source.' It distinguishes the tool from siblings (web_search, web_read) by emphasizing the one-shot combined operation and citation-ready output.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a clear use case: 'Ideal for grounding an answer with citations.' It implies when to use this tool over web_search/web_read (when both search and read are needed together), though it does not explicitly name alternatives or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 8 tool updatesv0.2.0
    • First observedfinance_filing_read
    • First observedfinance_filings
    • First observedfinance_financials
    • First observedwatch_check
    • First observedwatch_manage
    • First observedweb_read
    • First observedweb_research
    • First observedweb_search

TDQS

A4/5.0
Disambiguation4/5

Tools are largely distinct: web_search returns search results, web_read fetches a URL, web_research combines both. Finance tools distinguish listing filings, reading a filing, and getting financials. Watch tools separate management from checking. The only overlap is web_research superseding web_search+web_read, but descriptions clarify the intended use.

Naming Consistency4/5

Most tools follow a noun_verb or domain_verb pattern (web_search, web_read, watch_manage, watch_check, finance_filing_read). However, finance_filings and finance_financials are noun-only, breaking the otherwise consistent verb-implied pattern. Still predictable and readable.

Tool Count5/5

8 tools is well-scoped for a research and monitoring server. Each tool serves a distinct function without unnecessary bloat, covering web research, SEC filings, financials, and watch alerts.

Completeness4/5

The tool surface covers the core lifecycle: search, read, research, list/read filings, get financials, and manage/check watches. Minor gaps include no direct way to edit a watch (only add/remove/list) and no bulk operations, but these are workaroundable. The provenance focus is fully supported.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Enables AI agents to read web pages reliably, returning clean markdown content, hyperlinks, and metadata without navigation or ad noise.
    3
    15
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Give your AI agent live SEC EDGAR data: company financials, insider trades, 8-K events, 13F holdings, and the raw filings stream — all normalized to clean JSON, every number traceable back to its sec.gov source filing.
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI agents to extract clean, structured web content (articles, tables, links, visual layouts) optimized for LLM token efficiency, with fast response times and optional JavaScript support.
    5
    64
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jakeyoung1/veris'

If you have feedback or need assistance with the MCP directory API, please join our Discord server