🤖 Deno Model Context Protocol (MCP) Agent Template Repository
A template Model Context Protocol server in Deno
Overview
Deno MCP Server is a template repository for creating agents that utilize the Model Context Protocol (MCP) in Deno, a secure runtime for JavaScript and TypeScript.
To use the Deno MCP Server, clone the repository from GitHub, set up your Deno environment, and follow the instructions in the README to create your own MCP agent.
- Provides a template for quick setup of MCP agents - Utilizes Deno's secure runtime for enhanced security - Easy integration with other Deno modules
- Developing chatbots that require context-aware responses.
- Creating AI agents for data processing tasks.
- Building interactive applications that leverage the Model Context Protocol.
Add to your AI client
Use these steps to connect 🤖 Deno Model Context Protocol (MCP) Agent Template Repository 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-phughesmcr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-phughesmcr"
]
}
}
}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-phughesmcr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-phughesmcr"
]
}
}
}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-phughesmcr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-phughesmcr"
]
}
}
}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-phughesmcr": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-phughesmcr"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"deno-mcp-server-phughesmcr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-phughesmcr"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"deno-mcp-server-phughesmcr": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deno-mcp-server-phughesmcr"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP is a protocol designed to facilitate context-aware interactions in applications.
Is Deno MCP Server free to use?
Yes! The Deno MCP Server is open-source and free to use under the MIT license.
Can I contribute to the Deno MCP Server?
Yes! Contributions are welcome. Please check the contribution guidelines in the repository.