-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathserver.json
More file actions
54 lines (54 loc) · 1.57 KB
/
server.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "io.github.apache/solr-mcp",
"description": "MCP server for Apache Solr providing search, indexing, schema and collection management",
"repository": {
"url": "https://github.com/apache/solr-mcp",
"source": "github"
},
"version": "1.0.0",
"packages": [
{
"registryType": "docker",
"identifier": "ghcr.io/apache/solr-mcp-server",
"version": "1.0.0-SNAPSHOT",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "URL of the Solr instance to connect to (default: http://localhost:8983/solr/)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "SOLR_URL"
}
]
},
{
"registryType": "docker",
"identifier": "ghcr.io/apache/solr-mcp-server",
"version": "1.0.0-SNAPSHOT",
"transport": {
"type": "streamable-http",
"url": "http://localhost:8080/mcp"
},
"environmentVariables": [
{
"description": "URL of the Solr instance to connect to (default: http://localhost:8983/solr/)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "SOLR_URL"
},
{
"description": "Enable HTTP mode (set to 'http' for streamable-http transport)",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "PROFILES"
}
]
}
]
}