resolve_entity
ActiveTool of Stripe_connect
"What's the ticker for…" / "find the CIK for…" / "what's the RxCUI for…" / "look up the ID for…" / "what is X's official identifier" — resolve a user-spoken NAME to the canonical/official identifier other tools require as input. Use FIRST whenever you have a name but need an ID. SUPPORTED TYPES: "company" (returns ticker + 10-digit CIK + company_name from SEC EDGAR + pipeworx://edgar/company/{cik} citation URI; accepts ticker, CIK, or company name as input — auto-disambiguated), "drug" (returns RxCUI + ingredient + brand from RxNorm + pipeworx://rxnorm/{rxcui} citation; accepts brand or generic name). Each call cascades through several lookup endpoints internally — using resolve_entity replaces 2-3 manual lookups.
Parameters schema
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"enum": [
"company",
"drug"
],
"type": "string",
"description": "Entity type: \"company\" or \"drug\"."
},
"value": {
"type": "string",
"description": "For company: ticker (AAPL), CIK (0000320193), or name. For drug: brand or generic name (e.g., \"ozempic\", \"metformin\")."
}
}
}Parent server
Stripe_connect
https://github.com/pipeworx-io/mcp-stripe_connect
1/7 registries