cobalt_ucc
Pack: cobalt · Endpoint: https://gateway.pipeworx.io/cobalt/mcp
UCC liens for a business — returns Uniform Commercial Code filings (secured party, filing date, filing number, status) recorded against a company. Covers 11 states. Use to detect existing liens on collateral for lending/underwriting. Example: cobalt_ucc({ searchQuery: “Acme LLC”, state: “TX”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
searchQuery | string | yes | Company legal name or Secretary-of-State entity id (sosId). |
state | string | yes | Two-letter US state code, e.g. “TX”, “CA”. UCC coverage is limited to 11 states. |
_apiKey | string | yes | Cobalt Intelligence API key. |
Example call
Arguments
{
"searchQuery": "Acme LLC",
"state": "TX",
"_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_ucc","arguments":{"searchQuery":"Acme LLC","state":"TX","_apiKey":"your-cobalt-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cobalt_ucc', {
"searchQuery": "Acme LLC",
"state": "TX",
"_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.