fda_save_aliases
ActiveTool of FDA Data MCP
Save normalized alias names for a parent company, updating confidence and tracking collisions. Use this for true name variants of the same company record. If a collision says the alias already belongs to another company_id, use fda_link_subsidiaries instead of forcing the alias. Typical workflow: call fda_suggest_subsidiaries first, review results, then call this tool with confirmed same-entity alias names.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"parent_company",
"aliases"
],
"properties": {
"aliases": {
"type": "array",
"items": {
"type": "object",
"required": [
"alias"
],
"properties": {
"alias": {
"type": "string",
"maxLength": 500,
"description": "Alias name to associate with the company"
},
"source": {
"type": "string",
"maxLength": 500,
"description": "Alias source identifier"
},
"confidence": {
"type": "number",
"maximum": 1,
"minimum": 0,
"description": "Alias confidence between 0 and 1"
}
}
},
"maxItems": 100,
"minItems": 1,
"description": "Alias entries to save"
},
"parent_company": {
"type": "string",
"maxLength": 500,
"description": "Canonical parent company name"
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
FDA Data MCP
https://github.com/medley/fda-data
1/7 registries