cobalt_business_search
Pack: cobalt · Endpoint: https://gateway.pipeworx.io/cobalt/mcp
Look up a US company’s Secretary-of-State registration & status — returns entity name, standing/status, SOS entity id, entity type, filing date, officers, registered agent, and address. Live from the state SOS portal (all 50 states + DC). Example: cobalt_business_search({ searchQuery: “Cobalt Intelligence”, state: “UT”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
searchQuery | string | yes | Company legal name (e.g. “Apple Inc”) or a Secretary-of-State entity id (sosId) to look up. |
state | string | yes | Two-letter US state code, e.g. “CA”, “NY”, “TX”, “DE”. |
liveData | boolean | no | Optional. Force a fresh live pull from the state portal (slower, may return a retryId) instead of allowing recent cached data. |
_apiKey | string | yes | Cobalt Intelligence API key (20 free lookups at cobaltintelligence.com). |
Example call
Arguments
{
"searchQuery": "Apple Inc",
"state": "CA",
"_apiKey": "your-cobalt-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/cobalt/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cobalt_business_search","arguments":{"searchQuery":"Apple Inc","state":"CA","_apiKey":"your-cobalt-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cobalt_business_search', {
"searchQuery": "Apple Inc",
"state": "CA",
"_apiKey": "your-cobalt-api-key"
});
More examples
{
"searchQuery": "1234567890",
"state": "DE",
"liveData": true,
"_apiKey": "your-cobalt-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cobalt": {
"url": "https://gateway.pipeworx.io/cobalt/mcp"
}
}
}
See Getting Started for client-specific install steps.