LM Studio Server
БесплатноНе проверенEnables listing, loading, unloading, and configuring models in LM Studio via MCP tools, with support for TTL and draft model settings.
Описание
Enables listing, loading, unloading, and configuring models in LM Studio via MCP tools, with support for TTL and draft model settings.
README
A Model Context Protocol (MCP) server for LM Studio that enables model management through standardized tools.
Features
- 📋 List Models - View all available models and their current state
- 🚀 Load Models - Load models into memory with configurable TTL
- 🛑 Unload Models - Immediately unload models from memory
- ⚙️ Configure Models - Adjust model settings like TTL and draft models
- 📊 Model Details - Get detailed information about specific models
Prerequisites
- Node.js >= 18.0.0
- LM Studio running with local server enabled
- LM Studio local server running on port 1234 (default) or custom port
Installation
npm install
npm run build
Quickstart (Build & Run)
Follow these steps to build and run the MCP server locally.
- Install dependencies and build the project:
npm install
npm run build
- Start the server (uses the compiled files in
dist):
npm start
- The server writes MCP communication to
stdoutand logs tostderr.
Environment variable tips:
- Default LM Studio URL:
http://localhost:1234. - To use a custom LM Studio URL, set
LM_STUDIO_BASE_URLbefore starting.
PowerShell (Windows) example:
$env:LM_STUDIO_BASE_URL = "http://localhost:1234"
npm start
Command Prompt (Windows) example:
set LM_STUDIO_BASE_URL=http://localhost:1234 && npm start
macOS / Linux example:
LM_STUDIO_BASE_URL="http://localhost:1234" npm start
Development workflow:
- Rebuild on change (in one terminal):
npm run watch - Run the server (in another terminal):
npm run dev(starts Node with the inspector)
You can also run the compiled script directly with node dist/index.js if preferred.
Configuration
LM Studio Setup
- Open LM Studio
- Go to the Developer tab
- Enable the local server (default port: 1234)
- Optionally enable "Serve on Local Network" if accessing remotely
Environment Variables
LM_STUDIO_BASE_URL- Base URL for LM Studio API (default:http://localhost:1234)
Usage
With Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"lmstudio": {
"command": "node",
"args": ["/path/to/lmstudio-mcp/dist/index.js"],
"env": {
"LM_STUDIO_BASE_URL": "http://localhost:1234"
}
}
}
}
With Other MCP Clients
Run the server directly:
node dist/index.js
The server communicates over stdio following the MCP protocol.
Available Tools
list_models
List all available models with their current state (loaded/not-loaded).
Parameters: None
Example Response:
[
{
"id": "lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF",
"type": "llm",
"publisher": "Meta",
"architecture": "llama",
"state": "loaded",
"max_context_length": 8192
}
]
get_model_details
Get detailed information about a specific model.
Parameters:
model_id(string, required) - The ID of the model
Example:
{
"model_id": "lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF"
}
load_model
Load a model into memory with configurable Time-To-Live.
Parameters:
model_id(string, required) - The ID of the model to loadttl(number, optional) - Time-To-Live in seconds before auto-unload (default: 3600)
Example:
{
"model_id": "lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF",
"ttl": 7200
}
unload_model
Unload a model from memory immediately.
Parameters:
model_id(string, required) - The ID of the model to unload
Example:
{
"model_id": "lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF"
}
configure_model
Configure model settings such as TTL and draft model for speculative decoding.
Parameters:
model_id(string, required) - The ID of the model to configurettl(number, optional) - Time-To-Live in secondsdraft_model(string, optional) - Draft model ID for speculative decoding
Example:
{
"model_id": "lmstudio-community/Meta-Llama-3-8B-Instruct-GGUF",
"ttl": 1800,
"draft_model": "small-draft-model"
}
How It Works
LM Studio uses JIT (Just-In-Time) model loading. Models are loaded on-demand when inference requests are made:
- Loading: Making an inference request automatically loads the model with the specified TTL
- Unloading: Models auto-unload after TTL expires, or immediately when TTL is set to 0
- Configuration: Model settings are applied through inference request parameters
Development
Build
npm run build
Watch Mode
npm run watch
Debug
npm run dev
API Reference
This server interfaces with the LM Studio Developer API:
GET /api/v0/models- List all available modelsGET /api/v0/models/{model}- Get model detailsPOST /api/v0/chat/completions- Used for loading/configuring models
Troubleshooting
Connection Refused
- Ensure LM Studio is running
- Verify the local server is enabled in Developer settings
- Check that port 1234 (or custom port) is accessible
Model Not Found
- Verify the model ID is correct using
list_models - Ensure the model is downloaded in LM Studio
Model Won't Load
- Check available system memory
- Verify model compatibility with your system
- Review LM Studio logs for errors
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Links
Установка LM Studio Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/seajhawk/lmstudio-mcpFAQ
LM Studio Server MCP бесплатный?
Да, LM Studio Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для LM Studio Server?
Нет, LM Studio Server работает без API-ключей и переменных окружения.
LM Studio Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить LM Studio Server в Claude Desktop, Claude Code или Cursor?
Открой LM Studio Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare LM Studio Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
