-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
117 lines (117 loc) · 3.62 KB
/
server.json
File metadata and controls
117 lines (117 loc) · 3.62 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "io.github.mia-platform/console-mcp-server",
"description": "The official MCP Server from Mia-Platform to interact with Mia-Platform Console",
"repository": {
"url": "https://github.com/mia-platform/console-mcp-server",
"source": "github"
},
"version": "1.2.2",
"packages": [
{
"registryType": "npm",
"identifier": "@mia-platform/console-mcp-server",
"version": "1.2.2",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"description": "The runtime command to execute",
"isRequired": true,
"value": "run",
"type": "positional"
},
{
"description": "Run container in interactive mode",
"isRequired": true,
"format": "boolean",
"value": "true",
"type": "named",
"name": "-i"
},
{
"description": "Automatically remove the container when it exits",
"format": "boolean",
"value": "true",
"type": "named",
"name": "--rm"
},
{
"description": "Set the MIA_PLATFORM_CLIENT_ID environment variable in the runtime, which is the client ID of the Service Account of the Mia-Platform Company you want to access.",
"isRequired": true,
"value": "MIA_PLATFORM_CLIENT_ID={mia-platform-client-id}",
"variables": {
"token": {
"isRequired": true,
"format": "string",
"isSecret": true
}
},
"type": "named",
"name": "-e"
},
{
"description": "Set the MIA_PLATFORM_CLIENT_ID environment variable in the runtime, which is the client secret of the Service Account of the Mia-Platform Company you want to access.",
"isRequired": true,
"value": "MIA_PLATFORM_CLIENT_SECRET={mia-platform-client-secret}",
"variables": {
"token": {
"isRequired": true,
"format": "string",
"isSecret": true
}
},
"type": "named",
"name": "-e"
},
{
"description": "The container image to run",
"isRequired": true,
"value": "ghcr.io/github/github-mcp-server",
"type": "positional",
"valueHint": "image_name"
},
{
"description": "This is to specify the MCP server application",
"isRequired": true,
"value": "mcp-server",
"type": "positional"
},
{
"description": "This is the command to start the MCP server",
"isRequired": true,
"value": "start",
"type": "positional"
},
{
"description": "Flag to inform the server to use the stdio transport",
"isRequired": true,
"value": "--stdio",
"type": "positional"
},
{
"description": "Flag to inform the server about the MCP host to connect to",
"isRequired": true,
"value": "--host=https://console.cloud.mia-platform.eu",
"type": "positional"
}
],
"environmentVariables": []
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://console.cloud.mia-platform.eu/console-mcp-server/mcp",
"headers": [
{
"description": "Authentication token (PAT or App token)",
"isRequired": true,
"isSecret": true,
"name": "Authorization"
}
]
}
]
}