Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Loader

БесплатноНе проверен

Enables to create MCP tools by simply placing .ts or .js files in a folder, with hot reload and TypeScript support.

GitHubEmbed

Описание

Enables to create MCP tools by simply placing .ts or .js files in a folder, with hot reload and TypeScript support.

README

Drop .ts or .js files in a folder. They become MCP tools. That's it.

Quick Start

// .claude/tool/math.ts
import { tool } from "mcp-loader";

export const add = tool({
  description: "Add two numbers",
  args: {
    a: tool.schema.number(),
    b: tool.schema.number(),
  },
  execute: ({ a, b }) => a + b,
});

Add to .mcp.json:

{
  "mcpServers": {
    "tools": {
      "command": "npx",
      "args": ["mcp-loader", ".claude/tool"]
    }
  }
}

Done. Tools work in Claude.

Install

Global install:

npm install -g mcp-loader

Or as a dev dependency:

npm install --save-dev mcp-loader

Or just use npx (no install):

npx mcp-loader .claude/tool

Features

  • Hot reload - Save file, tool updates (disable with MCP_NO_HOT_RELOAD=true)
  • Multiple tools per file - Use named exports
  • MCP context - Second param in execute has request info
  • TypeScript - Full type safety

Note

After changing tools, refresh with /mcp in Claude Code or restart Claude Desktop.

License

MIT

from github.com/EugenEistrach/mcp-loader

Установить Loader в Claude Desktop, Claude Code, Cursor

Рекомендуется · одна команда, все IDE
unyly install mcp-loader

Ставит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.

Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh

Или настроить вручную

Выполни в терминале:

claude mcp add mcp-loader -- npx -y mcp-loader

FAQ

Loader MCP бесплатный?

Да, Loader MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Loader?

Нет, Loader работает без API-ключей и переменных окружения.

Loader — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Loader в Claude Desktop, Claude Code или Cursor?

Открой Loader на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Loader with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development