didit_kyb
Pack: didit · Endpoint: https://gateway.pipeworx.io/didit/mcp
Business (KYB) verification via the Didit company registry. Given a company name (+ country), returns the matched company profile (registration number, status, address, incorporation date) plus officers/directors and UBO/beneficial-owner ownership. Resolves the free registry search then pulls the full billable profile in one call. Example: didit_kyb({ name: “Stripe Inc”, country: “US”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Company name to look up, e.g. “Stripe Inc”. Also accepted as company_name. |
country | string | no | ISO 3166-1 alpha-2 country code the company is registered in, e.g. “US”, “GB”, “ES”. |
registration_number | string | no | Optional company registration number to disambiguate. |
kyb_response_id | string | no | Optional: a kyb_response_id from a prior search to skip re-searching. |
company_id | string | no | Optional: the candidate company_id to select when a kyb_response_id is provided. |
_apiKey | string | yes | Didit API key. Get one at https://didit.me/pricing (docs: https://docs.didit.me/). |
Example call
Arguments
{
"name": "Stripe Inc",
"country": "US",
"_apiKey": "your-didit-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/didit/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"didit_kyb","arguments":{"name":"Stripe Inc","country":"US","_apiKey":"your-didit-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('didit_kyb', {
"name": "Stripe Inc",
"country": "US",
"_apiKey": "your-didit-api-key"
});
More examples
{
"name": "Acme Corporation",
"country": "GB",
"registration_number": "12345678",
"_apiKey": "your-didit-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"didit": {
"url": "https://gateway.pipeworx.io/didit/mcp"
}
}
}
See Getting Started for client-specific install steps.