Command Palette

Search for a command to run...

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

TS Server

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

A TypeScript template for building MCP servers, enabling developers to create custom tools for AI assistants like Claude.

GitHubEmbed

Описание

A TypeScript template for building MCP servers, enabling developers to create custom tools for AI assistants like Claude.

README

Using with Claude Desktop

Add the following MCP config to your Claude Desktop configuration:

{
    "mcpServers": {
        "your-mcp-name": {
            "command": "node",
            "args": ["ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js"]
        }
    }
}

Development

The template includes a sample tool implementation in index.ts. To create your own MCP:

  1. Modify the server configuration in index.ts:
const server = new McpServer({
    name: "your-mcp-name",
    version: "0.0.1",
});
  1. Define your custom tools using the server.tool() method:
server.tool(
    "your-tool-name",
    "Your tool description",
    {
        parameter: z.string().describe("Parameter description"),
    },
    async ({ parameter }) => {
        return {
            content: [
                {
                    type: "text",
                    text: "Your tool's response",
                },
            ],
        };
    }
);
  1. Build and test your implementation:
npm run build
```"# TS-MCP-Server" 

from github.com/rnsrashmika078/TS-MCP-Server

Установка TS Server

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/rnsrashmika078/TS-MCP-Server

FAQ

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

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

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

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

TS Server — hosted или self-hosted?

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

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

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

Похожие MCP

Compare TS Server with

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

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

Автор?

Embed-бейдж для README

Похожее

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