-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
47 lines (47 loc) · 1.74 KB
/
server.json
File metadata and controls
47 lines (47 loc) · 1.74 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.spuentesp/lain",
"description": "High-performance knowledge graph MCP server for AI coding agents with semantic search.",
"version": "0.2.0",
"repository": {
"url": "https://github.com/spuentesp/lain",
"source": "github"
},
"homepage": "https://github.com/spuentesp/lain#readme",
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"coding",
"knowledge-graph",
"rust",
"semantic-search",
"code-analysis"
],
"installation": {
"method": "binary",
"binaries": {
"linux-x86_64": "https://github.com/spuentesp/lain/releases/download/v{version}/lain-{version}-x86_64-unknown-linux-gnu.tar.gz",
"linux-aarch64": "https://github.com/spuentesp/lain/releases/download/v{version}/lain-{version}-aarch64-unknown-linux-gnu.tar.gz",
"macos-aarch64": "https://github.com/spuentesp/lain/releases/download/v{version}/lain-{version}-aarch64-apple-darwin.tar.gz",
"windows-x86_64": "https://github.com/spuentesp/lain/releases/download/v{version}/lain-{version}-x86_64-pc-windows-msvc.tar.gz"
},
"compile_from_source": "cargo install --git https://github.com/spuentesp/lain.git",
"install_script": "curl -L https://raw.githubusercontent.com/spuentesp/lain/main/install.sh | bash"
},
"packages": [
{
"registryType": "npm",
"identifier": "@spuentesp/lain-mcp",
"version": "0.2.0",
"description": "NPM package with postinstall binary download",
"transport": {
"type": "stdio"
},
"installation": {
"npmPackage": "@spuentesp/lain-mcp",
"installationMethod": "npm install -g @spuentesp/lain-mcp"
}
}
]
}