-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathserver.json
More file actions
44 lines (44 loc) · 1.29 KB
/
server.json
File metadata and controls
44 lines (44 loc) · 1.29 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "Houtini LM",
"description": "MCP server that connects Claude to any OpenAI-compatible LLM endpoint. Offload routine analysis to a local model and preserve your Claude context window.",
"icon": "https://houtini.ai/favicon.ico",
"repository": {
"url": "https://github.com/houtini-ai/lm",
"source": "github"
},
"version": "2.0.1",
"packages": [
{
"registryType": "npm",
"identifier": "@houtini/lm",
"version": "2.0.1",
"transport": [
{
"type": "stdio"
}
],
"environmentVariables": [
{
"name": "LM_STUDIO_URL",
"description": "Base URL of the OpenAI-compatible API endpoint",
"isRequired": false,
"format": "url"
},
{
"name": "LM_STUDIO_MODEL",
"description": "Model identifier to use for requests (auto-detected if not set)",
"isRequired": false,
"format": "string"
},
{
"name": "LM_STUDIO_PASSWORD",
"description": "Bearer token for API authentication (no auth if blank)",
"isRequired": false,
"isSecret": true,
"format": "string"
}
]
}
]
}