get_company

Pack: open-corporates · Endpoint: https://gateway.pipeworx.io/open-corporates/mcp

Get full details for a specific company by jurisdiction and company number. Returns registration details, officers, filings, and industry codes. Example: get_company(“us_de”, “4483789”) for a Delaware company.

Parameters

NameTypeRequiredDescription
jurisdictionstringyesJurisdiction code (e.g., “us_de” for Delaware, “gb” for UK, “ca_on” for Ontario)
numberstringyesCompany registration number

Example call

Arguments

{
  "jurisdiction": "us_de",
  "number": "4483789"
}

curl

curl -X POST https://gateway.pipeworx.io/open-corporates/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_company","arguments":{"jurisdiction":"us_de","number":"4483789"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_company', {
  "jurisdiction": "us_de",
  "number": "4483789"
});

More examples

{
  "jurisdiction": "gb",
  "number": "12345678"
}

Response shape

FieldTypeDescription
namestring | nullCompany name
company_numberstring | nullCompany registration number
jurisdictionstring | nullJurisdiction code
statusstring | nullCurrent company status
typestring | nullCompany type
incorporation_datestring | nullDate of incorporation
dissolution_datestring | nullDate of dissolution if applicable
registered_addressstring | nullFull registered address
agent_namestring | nullRegistered agent name
registry_urlstring | nullURL to official registry
opencorporates_urlstring | nullOpenCorporates profile URL
industry_codesarrayIndustry classification codes
previous_namesarrayPrevious company names
branch_statusstring | nullBranch status if applicable
Full JSON Schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Company name"
    },
    "company_number": {
      "type": [
        "string",
        "null"
      ],
      "description": "Company registration number"
    },
    "jurisdiction": {
      "type": [
        "string",
        "null"
      ],
      "description": "Jurisdiction code"
    },
    "status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Current company status"
    },
    "type": {
      "type": [
        "string",
        "null"
      ],
      "description": "Company type"
    },
    "incorporation_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Date of incorporation"
    },
    "dissolution_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Date of dissolution if applicable"
    },
    "registered_address": {
      "type": [
        "string",
        "null"
      ],
      "description": "Full registered address"
    },
    "agent_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Registered agent name"
    },
    "registry_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to official registry"
    },
    "opencorporates_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "OpenCorporates profile URL"
    },
    "industry_codes": {
      "type": "array",
      "description": "Industry classification codes",
      "items": {
        "type": "object",
        "properties": {
          "code": {
            "type": [
              "string",
              "null"
            ],
            "description": "Industry code"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Industry description"
          }
        }
      }
    },
    "previous_names": {
      "type": "array",
      "description": "Previous company names",
      "items": {
        "type": "string"
      }
    },
    "branch_status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Branch status if applicable"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "open-corporates": {
      "url": "https://gateway.pipeworx.io/open-corporates/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026