Skip to main content
Glama
developersorli

mcp-file-system-lmstudio

mcp-file-system-lmstudio

A Model Context Protocol (MCP) server that exposes a local LM Studio model as tools. It talks to LM Studio's OpenAI-compatible API, so any model loaded in LM Studio can be queried from an MCP client.

Features

  • lmstudio_chat — send a prompt (or full multi-turn message history) to the local model and get its response back

  • lmstudio_list_models — list all models currently available on the LM Studio server

  • No API keys required — everything runs locally against your own LM Studio instance

Related MCP server: LM Studio MCP Bridge

Requirements

  • Node.js >= 18 (uses built-in fetch)

  • A running LM Studio server with at least one model loaded

Start the LM Studio server from its UI (Developer tab → Start Server). By default it listens on http://localhost:1234.

Installation

git clone https://github.com/developersorli/mcp-file-system-lmstudio.git
cd mcp-file-system-lmstudio
npm install

Configuration

The server reads two optional environment variables:

Variable

Default

Description

LMSTUDIO_BASE_URL

http://localhost:1234/v1

Base URL of the LM Studio OpenAI-compatible API

LMSTUDIO_MODEL

(auto)

Default model id. If unset, the first available model is used

MCP client configuration

Example for Cline / Claude Desktop style clients:

{
  "mcpServers": {
    "mcp-file-system-lmstudio": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-file-system-lmstudio/index.mjs"],
      "env": {
        "LMSTUDIO_BASE_URL": "http://localhost:1234/v1",
        "LMSTUDIO_MODEL": "my-model-id"
      }
    }
  }
}

Tools

lmstudio_chat

Parameter

Type

Required

Description

prompt

string

yes

The user message / prompt to send

system

string

no

Optional system instruction prepended as a system message

model

string

no

Model id to use (overrides the default)

temperature

number

no

Sampling temperature 0–2 (default 0.7)

max_tokens

number

no

Maximum tokens to generate

messages

array

no

Full conversation history; takes precedence over prompt/system

lmstudio_list_models

No parameters. Returns the ids of all models available on the LM Studio server.

License

MIT — see LICENSE.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/developersorli/mcp-file-system-lmstudio'

If you have feedback or need assistance with the MCP directory API, please join our Discord server