-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathserver.json
More file actions
38 lines (38 loc) · 1.17 KB
/
server.json
File metadata and controls
38 lines (38 loc) · 1.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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Codeturion/unreal-api-mcp",
"title": "Unreal Engine API Documentation",
"description": "Accurate UE5 C++ API docs for AI agents. Prevents hallucinated signatures and includes.",
"version": "0.1.1",
"repository": {
"url": "https://github.com/Codeturion/unreal-api-mcp",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"identifier": "unreal-api-mcp",
"version": "0.1.1",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "UNREAL_VERSION",
"description": "Unreal Engine version to serve: 5.5, 5.6, or 5.7 (default: auto-detect or 5.7)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "UNREAL_PROJECT_PATH",
"description": "Path to Unreal project for auto-detecting version from .uproject EngineAssociation field",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
]
}