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
| Name | Type | Required | Description |
|---|---|---|---|
jurisdiction | string | yes | Jurisdiction code (e.g., “us_de” for Delaware, “gb” for UK, “ca_on” for Ontario) |
number | string | yes | Company 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
| Field | Type | Description |
|---|---|---|
name | string | null | Company name |
company_number | string | null | Company registration number |
jurisdiction | string | null | Jurisdiction code |
status | string | null | Current company status |
type | string | null | Company type |
incorporation_date | string | null | Date of incorporation |
dissolution_date | string | null | Date of dissolution if applicable |
registered_address | string | null | Full registered address |
agent_name | string | null | Registered agent name |
registry_url | string | null | URL to official registry |
opencorporates_url | string | null | OpenCorporates profile URL |
industry_codes | array | Industry classification codes |
previous_names | array | Previous company names |
branch_status | string | null | Branch 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.