-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathserver.json
More file actions
147 lines (147 loc) · 4.17 KB
/
Copy pathserver.json
File metadata and controls
147 lines (147 loc) · 4.17 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.cyanheads/clinicaltrialsgov-mcp-server",
"description": "Search ClinicalTrials.gov — find studies, retrieve results, match patients to eligible trials.",
"repository": {
"url": "https://github.com/cyanheads/clinicaltrialsgov-mcp-server",
"source": "github"
},
"version": "2.9.2",
"remotes": [
{
"type": "streamable-http",
"url": "https://clinicaltrials.caseyjhand.com/mcp"
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "clinicaltrialsgov-mcp-server",
"runtimeHint": "bun",
"version": "2.9.2",
"packageArguments": [
{
"type": "positional",
"value": "run"
},
{
"type": "positional",
"value": "start:stdio"
}
],
"environmentVariables": [
{
"name": "CT_API_BASE_URL",
"description": "ClinicalTrials.gov API base URL.",
"format": "string",
"isRequired": false,
"default": "https://clinicaltrials.gov/api/v2"
},
{
"name": "CT_REQUEST_TIMEOUT_MS",
"description": "Per-request timeout in milliseconds.",
"format": "string",
"isRequired": false,
"default": "30000"
},
{
"name": "CT_MAX_PAGE_SIZE",
"description": "Maximum page size cap.",
"format": "string",
"isRequired": false,
"default": "200"
},
{
"name": "MCP_LOG_LEVEL",
"description": "Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').",
"format": "string",
"isRequired": false,
"default": "info"
}
],
"transport": {
"type": "stdio"
}
},
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "clinicaltrialsgov-mcp-server",
"runtimeHint": "bun",
"version": "2.9.2",
"packageArguments": [
{
"type": "positional",
"value": "run"
},
{
"type": "positional",
"value": "start:http"
}
],
"environmentVariables": [
{
"name": "CT_API_BASE_URL",
"description": "ClinicalTrials.gov API base URL.",
"format": "string",
"isRequired": false,
"default": "https://clinicaltrials.gov/api/v2"
},
{
"name": "CT_REQUEST_TIMEOUT_MS",
"description": "Per-request timeout in milliseconds.",
"format": "string",
"isRequired": false,
"default": "30000"
},
{
"name": "CT_MAX_PAGE_SIZE",
"description": "Maximum page size cap.",
"format": "string",
"isRequired": false,
"default": "200"
},
{
"name": "MCP_HTTP_HOST",
"description": "The hostname for the HTTP server.",
"format": "string",
"isRequired": false,
"default": "127.0.0.1"
},
{
"name": "MCP_HTTP_PORT",
"description": "The port to run the HTTP server on.",
"format": "string",
"isRequired": false,
"default": "3010"
},
{
"name": "MCP_HTTP_ENDPOINT_PATH",
"description": "The endpoint path for the MCP server.",
"format": "string",
"isRequired": false,
"default": "/mcp"
},
{
"name": "MCP_AUTH_MODE",
"description": "Authentication mode to use: 'none', 'jwt', or 'oauth'.",
"format": "string",
"isRequired": false,
"default": "none"
},
{
"name": "MCP_LOG_LEVEL",
"description": "Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').",
"format": "string",
"isRequired": false,
"default": "info"
}
],
"transport": {
"type": "streamable-http",
"url": "http://localhost:3010/mcp"
}
}
]
}