Llmctx MCP Server

LLM presets and MCP for Svelte 5 and SvelteKit. Visit the site at [svelte-llm.stanislav.garden](https://svelte-llm.stanislav.garden).

Local serverstdio

What is the Llmctx MCP server?

If you want an AI assistant working directly with Llmctx, the llmctx mcp server is the bridge. LLM presets and MCP for Svelte 5 and SvelteKit. Visit the site at svelte-llm.stanislav.garden.

What Llmctx does

LLM presets and MCP for Svelte 5 and SvelteKit. Visit the site at svelte-llm.stanislav.garden.

Tools it exposes

Once connected, the assistant can call these 2 tools directly:

Installing the llmctx mcp server

The server is distributed via npm as @modelcontextprotocol/inspector, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: GITHUB_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

AI-service servers chain other models into your assistant, turning a single chat into a small production pipeline. Llmctx sits in that group, and the shape of its toolset — Run, Misc — tells you what it is really for. Worth comparing against the other ai services servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by khromov.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the llmctx mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
RunThe Run tool exposed by this server.
MiscOG image from https://dynamic-og-image-generator.vercel.app/

How to install the Llmctx MCP server

{
  "mcpServers": {
    "llmctx": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/inspector"],
      "env": {
        "GITHUB_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
GITHUB_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Llmctx to Run.
  • Use Llmctx to Misc.

Frequently asked questions

It connects Llmctx to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Run, Misc) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Llmctx directly.