MCP is https://dirigon.com/v1/mcp (v1, not v2). This page is a JavaScript viewer. Agents should fetch /docs/desk.md, /docs/mcp.md, and /llms.txt. Claude app: new chat, click +, turn on Dirigon.

Introduction

Connect an agent or an app to BDC Schedules of Investments: the fund tape, the credit, and every holder mark that was filed.

Data is taken from SEC 10-Q and 10-K filings, plus opt-in N-CSR / N-CSRS interval funds. Each line traces to the filing it came from.

What you can access

  • Find a credit - search a borrower the way you do in the terminal.
  • Holder marks - every fund that printed that name, and the mark they filed.
  • Fund profile - Ares, Blackstone, Blue Owl, and the rest, by CIK or ticker.
  • SOI tape - the fund's Schedule of Investments, line by line (company, investment, cost, fair value, mark).
  • Non-accrual - lines the fund footnoted as non-accrual.
  • Coverage - how many funds and credits are in the latest snapshot.

Coverage

FundsCreditsFair valueSource
Live counts: filers, credits, and fair value on GET /v1/coverage. BDCs file 10-Q / 10-K. Interval funds on the roster file N-CSR / N-CSRS.

Live counts: GET /v1/coverage.

Data notes

  • Structured JSON - the same field names on every endpoint.
  • As-reported names - company_raw and investment_raw are the cells as printed on the SOI.
  • Marks - fair value / cost from the filed schedule. 1.00 is par.
  • Money - $ millions.
  • Funds - identified by CIK. Ticker is extra when the fund is listed.

Built for

  • Credit agents and LLM pipelines
  • Private-credit research
  • Portfolio and risk systems
  • Internal data layers

Start with the Quick start.

Quick start

Authenticate and make your first request.

1. Get an API key

Get a key at API plans. Trial on a work email, or subscribe to Tape or Matched. You see the secret once. Copy it. Terminal seats are by invitation.

2. Make your first request

Every request needs your key in the X-API-KEY header.

curl "https://dirigon.com/v1/filers?q=ARCC" \
  -H "X-API-KEY: YOUR_KEY"

3. Open a tape, or find a credit

curl "https://dirigon.com/v1/filers/1287750/positions?limit=5" \
  -H "X-API-KEY: YOUR_KEY"

curl "https://dirigon.com/v1/issuers?q=Coupa" \
  -H "X-API-KEY: YOUR_KEY"

What's next

Find a credit

Search a borrower. Same idea as Find credit in the terminal.

Look up a name, get an issuer_id, then open it. Use that id for holder marks.

GET/v1/issuers?q=Coupa

GET/v1/issuers/ISS-002537

Query

ParamWhereMeaning
qqueryName search.
issuer_idpathCredit id (ISS-######).
limitqueryHow many rows to return. Default 100, max 500.
cursorqueryFrom next_page_url.

Example

curl "https://dirigon.com/v1/issuers?q=Coupa" \
  -H "X-API-KEY: YOUR_KEY"

Response

{
  "issuers": [
    {
      "issuer_id": "ISS-002537",
      "display_name": "Denali Midco 2",
      "blocked": false,
      "n_holders": 32,
      "total_fv_m": 2785.9
    }
  ]
}

Fields

FieldMeaning
issuer_idCredit id. Use this in later calls.
display_nameCredit name.
n_holdersHow many funds print it.
total_fv_mFair value across those holders, $ millions.
blockedTrue if the name is disputed. Skip it for comparisons.

Holder marks

Every fund that printed the credit, and the mark they filed.

This is the disagreement view. One row per holder. Mark is fair value / cost.

GET/v1/issuers/ISS-002537/marks

If blocked is true on the credit, this endpoint returns 404. Skip disputed names for comparisons.

Example

curl "https://dirigon.com/v1/issuers/ISS-002537/marks" \
  -H "X-API-KEY: YOUR_KEY"

Response

{
  "marks": [
    {
      "issuer_id": "ISS-002537",
      "cik": 1287750,
      "filer": "ARES CAPITAL CORP",
      "mark": 0.9524,
      "fv_m": 365.8,
      "cost_m": 384.1,
      "period_end": "2026-06-30"
    }
  ]
}

Fields

FieldMeaning
filerFund name.
cikFund CIK.
markFair value / cost (1.00 = par).
fv_mFair value, $ millions.
cost_mAmortized cost, $ millions.
period_endSOI period.

Fund profile

Same idea as Fund profile in the terminal. Search by ticker, name, or CIK.

GET/v1/filers?q=ARCC

GET/v1/filers/1287750

Query

ParamWhereMeaning
qqueryName, ticker, or CIK.
cikpathSEC CIK of the fund.
limitqueryHow many rows to return. Default 100, max 500.

Example

curl "https://dirigon.com/v1/filers?q=ARCC" \
  -H "X-API-KEY: YOUR_KEY"

Response

{
  "filers": [
    {
      "cik": 1287750,
      "name": "ARES CAPITAL CORP",
      "ticker": "ARCC",
      "manager": "Ares Management",
      "period_end": "2026-06-30",
      "n_positions": 1239,
      "total_fv_m": 28338.3,
      "form": "10-Q",
      "filing_url": "https://www.sec.gov/Archives/edgar/data/1287750/000162828026050307/arcc-20260630.htm"
    }
  ]
}

Fields

FieldMeaning
cikSEC id for the fund.
nameFund name.
tickerListed ticker when there is one.
managerAdviser.
period_endLatest SOI period.
n_positionsLines on the tape.
total_fv_mFair value of that tape, $ millions.
filing_urlLink to the SEC filing.

SOI tape

The Schedule of Investments for one fund, line by line: company, investment, cost, fair value, mark.

GET/v1/filers/1287750/positions?limit=25

limit is how many rows you want in total. Follow next_page_url when it is present.

Query

ParamWhereMeaning
cikpathFund CIK (required).
limitqueryTotal rows to return. Default 100, max 500.
cursorqueryFrom next_page_url.

Example

curl "https://dirigon.com/v1/filers/1287750/positions?limit=5" \
  -H "X-API-KEY: YOUR_KEY"

Response

{
  "positions": [
    {
      "company_raw": "ACP Avenu Midco LLC",
      "investment_raw": "First lien senior secured revolving loan",
      "lien": "first_lien",
      "mark": 1.0,
      "fv_m": 0.9,
      "cost_m": 0.9,
      "non_accrual": false,
      "filing_url": "https://www.sec.gov/Archives/edgar/data/1287750/000162828026050307/arcc-20260630.htm"
    }
  ]
}

Fields

FieldMeaning
company_rawCompany as printed on the SOI.
investment_rawInvestment line as printed.
lienfirst_lien, second_lien, and so on.
cost_mAmortized cost, $ millions.
fv_mFair value, $ millions.
markFair value / cost.
non_accrualTrue if the fund footnoted it as non-accrual.
filing_urlThe filing this line came from.

Non-accrual

What the fund footnoted. Not inferred from a low mark.

GET/v1/non-accrual

Example

curl "https://dirigon.com/v1/non-accrual?limit=10" \
  -H "X-API-KEY: YOUR_KEY"

Response

{
  "non_accrual": [
    {
      "filer": "Blackstone Private Credit Fund",
      "company": "Medallia, Inc.",
      "cost_m": 1084.03,
      "fv_m": 553.6,
      "mark": 0.5107,
      "period": "2026-06-30"
    }
  ]
}

Coverage

How many funds and credits are in the latest snapshot.

GET/v1/coverage

No query parameters. Call this when you want the current universe size.

curl "https://dirigon.com/v1/coverage" \
  -H "X-API-KEY: YOUR_KEY"

MCP

Same data, for agents. Do not paste an API key into a chat.

Open Connect. Claude, ChatGPT, and Cursor use OAuth. Curl uses header X-API-KEY from an env var. An invite terminal seat cannot Allow.

Claude app

  1. Customize → Connectors → Add custom connector.
  2. Name: Dirigon. URL: https://dirigon.com/v1/mcp
  3. Leave OAuth Client ID and Secret empty. Click Add.
  4. Sign in with the mailbox on the API plan and click Allow.
  5. New chat → + → enable Dirigon.

Do not paste an API key into that dialog or into a chat.

Claude Code

claude mcp add --transport http dirigon https://dirigon.com/v1/mcp

Tools

  • lookup - First tool. q= a borrower or ticker. One short card. full=true is the deep card.
  • get_issuer - Peeled credit. One hit or exact name opens the card. q= is a whole token. preset=disagreement is the widest-marks screen.
  • get_disagreement - Widest same-loan screen. Pass issuer_id to get_issuer for the card.
  • get_filer - Fund card: book, top credits, software membership vs printed mix
  • get_positions - Line lookup (cik required; q= a borrower; no q is a 15-line sample)
  • get_non_accrual - Non-accrual lines (optional cik or q)
  • get_coverage - Snapshot size, plan, and start_here
  • get_sector - Sectors page (software, healthcare, industrials)
  • get_software - Same as get_sector for software
  • get_clo_tranche - CLO note holders across CEFs, BDCs, and interval funds

Example

curl https://dirigon.com/v1/mcp \
  -H "X-API-KEY: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Example prompts

  • Who holds Coupa, and at what mark?
  • Open BCRED. What is the book mark vs as-filed?
  • Four largest funds, equal-weight: book mark, PIK, non-accrual.
  • Which fund has the most software?
  • Show the widest holder-mark disagreements in software.
  • Show Ares Capital's Kellermeyer line.
  • Which funds flagged Medallia as non-accrual?

OpenAPI

Generate a client, import into Postman, or let an agent discover the endpoints.

https://dirigon.com/v1/openapi.yaml

Full field list: /v1/fields.json. Agent index: /llms.txt. Markdown pages: /docs/introduction.md.