US business bankruptcy data via MCP: search by name, EIN. Lookup docket items.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"com-bankruptcyobserver-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Public documentation and registry metadata for the Bankruptcy Observer API and MCP server. This repository contains no application source code.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in legal / data
Query and manage PostgreSQL databases directly from AI assistants
87 tools for Korean law — statutes, precedents, ordinances, interpretations | MCP Server · CLI · npm
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for com.bankruptcyobserver/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Public documentation and registry metadata for the Bankruptcy Observer API and MCP server. This repository contains no application source code.
Data covers US business bankruptcies (federal courts) only. Consumer-only filings and non-US jurisdictions are not included.
AI assistants and users can look up bankruptcy cases with no account, no API key, and no API token:
| Free query | MCP tool | Example |
|---|---|---|
| Debtor name | search_bankruptcy_cases_tool | search_term: "JOY-CPW, INC." — no court required |
| Case number | get_case_by_case_number_tool | short_case_number: "26-10543" — no court required |
Docs: https://mcp.bankruptcyobserver.com/docs or https://api.bankruptcyobserver.com/docs (GET, no auth). The MCP root GET https://mcp.bankruptcyobserver.com/ also returns a free_lookups hint.
You can sign up for a subscription through the MCP server: use list_plans_tool to see plans, then purchase_plan_tool with plan_id (e.g. professional, business, enterprise) to get a Stripe Checkout link. After payment you receive an API token; restricted queries can be authenticated with that token or with OAuth Bearer access tokens from the MCP OAuth flow. No need to go to the website to subscribe.
For questions about access, billing, or data coverage, use only the contact form at https://www.bankruptcyobserver.com/contact. Do not publish or use direct email addresses for contact.
Paid plans (Stripe via MCP tools)
Billable tool calls correspond to data tools invoked via MCP (for example, search, case by EIN, docket items, NAICS/state filters) or their REST API equivalents.
Authenticate using either an API token or an OAuth access token, sent in one of these ways:
Authorization: Bearer <your-token>X-API-Key: <your-token>Api-Key: <your-token>Use OpenAI's Responses API to call this MCP server directly.
Free tier (no token):
from openai import OpenAI
client = OpenAI()
response = client.responses.create(
model="gpt-4.1",
tools=[{
"type": "mcp",
"server_label": "bankruptcy_observer",
"server_url": "https://mcp.bankruptcyobserver.com/mcp",
"require_approval": "never",
}],
input="Search for bankruptcy cases for Acme Corp",
)
print(response.output_text)
Paid tier (with token):
response = client.responses.create(
model="gpt-4.1",
tools=[{
"type": "mcp",
"server_label": "bankruptcy_observer",
"server_url": "https://mcp.bankruptcyobserver.com/mcp",
... [View full README on GitHub](https://github.com/jmtroller/bankruptcy-observer-mcp-api-public-documentation#readme)