search_officers
Pack: open-corporates · Endpoint: https://gateway.pipeworx.io/open-corporates/mcp
Search company officers and directors by name. Returns officer name, position, company, start/end dates, and nationality. Example: search_officers(“Elon Musk”)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Officer name to search (e.g., “John Smith”) |
Example call
Arguments
{
"query": "Elon Musk"
}
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":"search_officers","arguments":{"query":"Elon Musk"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_officers', {
"query": "Elon Musk"
});
Response shape
Always returns: query, total, returned, officers
| Field | Type | Description |
|---|---|---|
query | string | The search query used |
total | number | Total number of matching officers |
returned | number | Number of officers returned in this response |
officers | array | List of matching officers |
Full JSON Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query used"
},
"total": {
"type": "number",
"description": "Total number of matching officers"
},
"returned": {
"type": "number",
"description": "Number of officers returned in this response"
},
"officers": {
"type": "array",
"description": "List of matching officers",
"items": {
"type": "object",
"properties": {
"id": {
"type": [
"number",
"null"
],
"description": "Officer ID"
},
"name": {
"type": [
"string",
"null"
],
"description": "Officer name"
},
"position": {
"type": [
"string",
"null"
],
"description": "Position or title"
},
"start_date": {
"type": [
"string",
"null"
],
"description": "Start date of position"
},
"end_date": {
"type": [
"string",
"null"
],
"description": "End date of position if applicable"
},
"occupation": {
"type": [
"string",
"null"
],
"description": "Officer occupation"
},
"nationality": {
"type": [
"string",
"null"
],
"description": "Officer nationality"
},
"company_name": {
"type": [
"string",
"null"
],
"description": "Associated company name"
},
"company_number": {
"type": [
"string",
"null"
],
"description": "Associated company registration number"
},
"company_jurisdiction": {
"type": [
"string",
"null"
],
"description": "Associated company jurisdiction"
},
"opencorporates_url": {
"type": [
"string",
"null"
],
"description": "OpenCorporates profile URL"
}
}
}
}
},
"required": [
"query",
"total",
"returned",
"officers"
]
}
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.