-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopencode.jsonc
More file actions
170 lines (170 loc) · 4.45 KB
/
Copy pathopencode.jsonc
File metadata and controls
170 lines (170 loc) · 4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// OpenCode MCP configuration for Healthcare Data MCP servers.
// Place this file in the project root, or merge the "mcp" block into
// your global ~/.opencode/opencode.jsonc.
//
// Two transport modes:
// stdio -- servers run as local child processes (default, zero setup)
// remote -- connect to Docker Compose HTTP endpoints on ports 8002-8019
//
// To use HTTP mode instead, run `docker compose up -d` first, then switch
// each entry to: { "type": "remote", "url": "http://localhost:PORT/mcp" }
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"hc-service-area": {
"type": "local",
"command": "python",
"args": ["-m", "servers.service_area.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-geo-demographics": {
"type": "local",
"command": "python",
"args": ["-m", "servers.geo_demographics.server"],
"env": {
"PYTHONPATH": ".",
"CENSUS_API_KEY": "{env:CENSUS_API_KEY}",
"HUD_API_TOKEN": "{env:HUD_API_TOKEN}"
}
},
"hc-drive-time": {
"type": "local",
"command": "python",
"args": ["-m", "servers.drive_time.server"],
"env": {
"PYTHONPATH": ".",
"ORS_API_KEY": "{env:ORS_API_KEY}",
"OSRM_BASE_URL": "http://router.project-osrm.org"
}
},
"hc-hospital-quality": {
"type": "local",
"command": "python",
"args": ["-m", "servers.hospital_quality.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-cms-facility": {
"type": "local",
"command": "python",
"args": ["-m", "servers.cms_facility.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-health-system-profiler": {
"type": "local",
"command": "python",
"args": ["-m", "servers.health_system_profiler.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-financial-intelligence": {
"type": "local",
"command": "python",
"args": ["-m", "servers.financial_intelligence.server"],
"env": {
"PYTHONPATH": ".",
"SEC_USER_AGENT": ""
}
},
"hc-price-transparency": {
"type": "local",
"command": "python",
"args": ["-m", "servers.price_transparency.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-physician-referral-network": {
"type": "local",
"command": "python",
"args": ["-m", "servers.physician_referral_network.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-workforce-analytics": {
"type": "local",
"command": "python",
"args": ["-m", "servers.workforce_analytics.server"],
"env": {
"PYTHONPATH": ".",
"BLS_API_KEY": "{env:BLS_API_KEY}"
}
},
"hc-claims-analytics": {
"type": "local",
"command": "python",
"args": ["-m", "servers.claims_analytics.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-public-records": {
"type": "local",
"command": "python",
"args": ["-m", "servers.public_records.server"],
"env": {
"PYTHONPATH": ".",
"SAM_GOV_API_KEY": "{env:SAM_GOV_API_KEY}",
"CHPL_API_KEY": "{env:CHPL_API_KEY}"
}
},
"hc-web-intelligence": {
"type": "local",
"command": "python",
"args": ["-m", "servers.web_intelligence.server"],
"env": {
"PYTHONPATH": ".",
"GOOGLE_CSE_API_KEY": "{env:GOOGLE_CSE_API_KEY}",
"GOOGLE_CSE_ID": "{env:GOOGLE_CSE_ID}",
"PROXYCURL_API_KEY": "{env:PROXYCURL_API_KEY}"
}
},
"hc-discovery": {
"type": "local",
"command": "python",
"args": ["-m", "servers.discovery.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-gateway": {
"type": "local",
"command": "python",
"args": ["-m", "servers.gateway.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-provider-enrollment": {
"type": "local",
"command": "python",
"args": ["-m", "servers.provider_enrollment.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-community-health": {
"type": "local",
"command": "python",
"args": ["-m", "servers.community_health.server"],
"env": {
"PYTHONPATH": "."
}
},
"hc-research-trials": {
"type": "local",
"command": "python",
"args": ["-m", "servers.research_trials.server"],
"env": {
"PYTHONPATH": "."
}
}
}
}