MCP Server live — AI agents can now query 105M+ SEC facts. Connect your agent →
ValueinValuein
MCP Tools/delete_citation_override
Discovery

Delete Citation Override

delete_citation_override
sample
sp500
full

Remove a user-authored citation correction by fact_id. Idempotent — deleting a missing override returns deleted=false without error. Once deleted, reports that previously rendered the corrected value revert to the canonical fact value on next regeneration.

Example Call

# Using the Valuein MCP server from Python (via MCP SDK)
# Or call directly from Claude / Cursor after setup

result = await client.call_tool(
    "delete_citation_override",
    arguments={}
)
print(result)

Direct tool call:delete_citation_override(...)

Try it now

No token required

Paste this in your terminal — the sample tier returns real S&P500 data without authentication.

# No auth required — sample tier covers S&P500 with a 5-year window.
# Add an Authorization: Bearer header for full universe and history.
$ curl -X POST https://mcp.valuein.biz/mcp \
    -H "Content-Type: application/json" \
    -d '{
        "jsonrpc": "2.0",
        "id": 1,
        "method": "tools/call",
        "params": {
          "name": "delete_citation_override",
          "arguments": {}
        }
      }'

Inputs

This tool takes no inputs.

Output Fields

Example Response

{}

See MCP server for the structured response shape.

Notes

Available from sample tier and above.