D

Deno

Execute Deno tasks and inspect deno.json.

·No reviews yet
Repo
Share:

About

Auto-generated

Deno is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Deno.

What is the Deno MCP?
The Deno MCP allows you to execute Deno tasks and inspect deno.json files. It provides an interface to interact with the Deno runtime environment for JavaScript and TypeScript projects.
Does the Deno MCP require an API key or other credentials?
No, the Deno MCP uses 'none' as its authentication type. It does not require an API key, OAuth, or any other credentials for operation.
How can I install the Deno MCP in an MCP client like Cline?
Installation in Cline typically involves adding the MCP's slug via the 'cline install' command. Configuration may then involve specifying the Deno executable path or project root.
What are the primary capabilities of the Deno MCP?
The Deno MCP primarily enables the execution of Deno tasks, which includes running scripts, testing code, and formatting. It also allows for the inspection of deno.json configuration files within a project.
Is there a cost associated with using the Deno MCP?
The Deno MCP itself is provided free of charge by the community. Any costs would be associated with the underlying Deno runtime or development environment setup.
What is a common limitation when using the Deno MCP?
A common limitation is that the MCP relies on the Deno runtime being correctly installed and configured on your system. Without a proper Deno installation, the MCP cannot execute tasks.

Install Deno

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "deno": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-deno"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "deno": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-deno"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "deno": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-deno"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.