Best for
- TypeScript developers looking to quickly scaffold an MCP server
- Teams needing extensible MCP server infrastructure
- Experimental projects or proof-of-concepts
This server is a scaffold powered by the mcp-ts-core framework and currently includes no predefined tools. It is suitable for developers as a starting point but not for non-technical users directly.
This is a scaffold server generated by the @cyanheads/mcp-ts-core framework, which is designed for building MCP servers. The framework provides declarative definitions (tools, resources, prompts), authentication (JWT/OAuth), multi-backend storage (in-memory, filesystem, Supabase, Cloudflare D1/KV/R2), OpenTelemetry observability, and first-class support for Bun, Node.js, and Cloudflare Workers. This server acts as a demonstration of the framework's capabilities; actual tools are defined by the developer in the generated project.
npx -y @cyanheads/mcp-ts-core run start:stdio.{
"mcpServers": {
"mcp-ts-core-server": {
"command": "npx",
"args": [
"-y",
"@cyanheads/mcp-ts-core",
"run",
"start:stdio"
],
"env": {
"MCP_LOG_LEVEL": "info"
}
}
}
}