44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "pmda-drug-info",
|
|
"version": "0.1.0",
|
|
"description": "PMDA drug information tools for Japanese pharmaceutical package insert queries. Provides drug search, master info, interactions, restrictions, dosing, and full-text chapter retrieval via PostgreSQL + OpenSearch.",
|
|
"hooks": {
|
|
"PrePrompt": [
|
|
{
|
|
"type": "command",
|
|
"command": "python hooks/pre_prompt.py"
|
|
}
|
|
]
|
|
},
|
|
"mainAgentHiddenTools": [
|
|
"search_drugs",
|
|
"list_categories",
|
|
"list_drugs_in_category",
|
|
"get_drug_master",
|
|
"get_drug_interactions",
|
|
"get_drug_restrictions",
|
|
"get_drug_dosing",
|
|
"search_section_text",
|
|
"list_drug_chapters",
|
|
"read_drug_chapter"
|
|
],
|
|
"mcpServers": {
|
|
"pmda_drug_info": {
|
|
"transport": "stdio",
|
|
"command": "python3",
|
|
"args": [
|
|
"./pmda_server.py"
|
|
],
|
|
"env": {
|
|
"PMDA_PG_HOST": "postgres-db",
|
|
"PMDA_PG_PORT": "5432",
|
|
"PMDA_PG_DB": "gptbase",
|
|
"PMDA_PG_USER": "postgres",
|
|
"PMDA_PG_PASSWORD": "yRhnjSnhufuxNcCxFtPctXnTbAKS2jT2",
|
|
"PMDA_OPENSEARCH_URL": "http://admin:admin@opensearch-node:9200",
|
|
"PMDA_OS_INDEX": "pmda_sections"
|
|
}
|
|
}
|
|
}
|
|
}
|