MCP TypeScript Server Starter
@ralf-boltshauser
关于 MCP TypeScript Server Starter
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-typescript-server-starter": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://subdomain.yourdomain.com/sse"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP TypeScript Server Starter?
A starter project for building Model Context Protocol (MCP) servers in TypeScript. It includes a simple echo server that demonstrates tools, resources, and prompts, and supports both STDIO and SSE communication modes.
How to use MCP TypeScript Server Starter?
Clone the repository, install dependencies with pnpm install, and run pnpm dev to start the development server with an inspector at http://localhost:6274. To switch between STDIO and SSE modes, comment/uncomment the corresponding code blocks in src/index.ts. Deploy with Docker or Coolify, and connect via npx -y mcp-remote https://your-domain.com/sse.
Key features of MCP TypeScript Server Starter
- Simple echo server with tool, resource, and prompt implementations
- Supports STDIO (local) and SSE (remote) communication
- Built-in web inspector for testing and debugging
- Hot-reloading development server
- TypeScript type safety and modern tooling
- Easy deployment to Coolify and other platforms
Use cases of MCP TypeScript Server Starter
- Quickly prototype and test an MCP server locally
- Integrate an echo server with Cursor or Claude Desktop
- Deploy a production‑ready MCP server via SSE for remote access
- Use as a reference for building custom tools, resources, or prompts
- Experiment with MCP debugging and environment variable handling
FAQ from MCP TypeScript Server Starter
What is the difference between STDIO and SSE modes?
STDIO mode uses direct process communication and is ideal for local development with tools like Cursor or Claude Desktop. SSE mode uses HTTP/SSE and is better for production deployments and remote access.
What are the prerequisites?
Node.js v16 or later and pnpm (or npm) are required.
How do I test the server locally?
Run pnpm dev, open the inspector at http://localhost:6274, click “Connect”, go to “Tools”, “List Tools”, select “echo”, write a message, and submit.
How do I deploy to Coolify?
Disable GZIP compression, ensure port 3001 is exposed, and set the domain with :3001 suffix (e.g. https://subdomain.yourdomain.com:3001). Then connect clients with npx -y mcp-remote https://subdomain.yourdomain.com/sse.
How do I add custom tools, resources, or prompts?
Edit src/index.ts — the file contains commented examples for adding tools (functions your AI can call), resources (data your AI can access), and prompts (templates for AI interactions).
开发工具 分类下的更多 MCP 服务器
MCP Unity Editor (Game Engine)
CoderGamesterModel Context Protocol (MCP) plugin to connect with Unity Editor — designed for Cursor, Claude Code, Codex, Windsurf and other IDEs
JetBrains MCP Proxy Server
JetBrainsA model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
TalkToFigma
sonnylazuardiTalkToFigma: MCP integration between AI Agent (Cursor, Claude Code, Codex) and Figma, allowing Agentic AI to communicate with Figma for reading designs and modifying them programmatically.
MCP Containers
metorialConnect any AI model to 1200+ integrations (MCP, CLI, API)
mcp-excalidraw
yctimlinMCP server and Claude Code skill for Excalidraw — programmatic canvas toolkit to create, edit, and export diagrams via AI agents with real-time canvas sync.
评论