deno-mcp-server-template
template repository for MCP server creation by Deno
Overview
The deno-mcp-server is a template repository designed for creating Minecraft server instances using Deno, a secure runtime for JavaScript and TypeScript.
To use the deno-mcp-server template, clone the repository from GitHub, customize the server settings as needed, and run the server using Deno commands.
- Easy setup for Minecraft servers using Deno - Template structure for quick customization - Built-in support for TypeScript
- Setting up a personal Minecraft server for friends.
- Developing and testing Minecraft server plugins.
- Learning server management and Deno usage.
Add to your AI client
Use these steps to connect deno-mcp-server-template in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"deno-mcp-server-mazrean": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-mazrean"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"deno-mcp-server-mazrean": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-mazrean"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"deno-mcp-server-mazrean": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-mazrean"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"deno-mcp-server-mazrean": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-mazrean"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"deno-mcp-server-mazrean": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-mazrean"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"deno-mcp-server-mazrean": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-mazrean"
]
}
}
}FAQ
Is deno-mcp-server free to use?
Yes! The deno-mcp-server is open-source and free to use under the MIT License.
What programming language is used?
The server template is written in TypeScript, leveraging Deno's capabilities.
Can I modify the template?
Absolutely! The template is designed for customization to fit your specific server needs.