TS Server
БесплатноНе проверенA TypeScript template for building MCP servers, enabling developers to create custom tools for AI assistants like Claude.
Описание
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:
- Modify the server configuration in
index.ts:
const server = new McpServer({
name: "your-mcp-name",
version: "0.0.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",
},
],
};
}
);
- Build and test your implementation:
npm run build
```"# TS-MCP-Server"
Установка TS Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/rnsrashmika078/TS-MCP-ServerFAQ
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
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare TS Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
