-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
39 lines (39 loc) · 1.26 KB
/
Copy pathserver.json
File metadata and controls
39 lines (39 loc) · 1.26 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.JordanRO2/idamesh",
"title": "idamesh",
"description": "MCP server for IDA Pro: decompiler, disassembler, and analysis tools for MCP clients.",
"version": "1.0.0",
"repository": {
"url": "https://github.com/JordanRO2/idamesh",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"identifier": "idamesh",
"version": "1.0.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"packageArguments": [
{
"type": "positional",
"value": "worker",
"valueHint": "subcommand",
"description": "MCP subcommand. 'worker' serves a single IDA database over stdio; 'supervisor' fronts multiple databases behind one endpoint; 'install' registers the resident GUI plugin."
}
],
"environmentVariables": [
{
"name": "IDADIR",
"description": "Path to the licensed IDA Pro installation, used to locate idalib/idapro. Required if IDA's Python API is not already importable on PYTHONPATH.",
"isRequired": false,
"isSecret": false,
"format": "string"
}
]
}
]
}