Back to MCP directory
publicPublicdnsLocal runtime

Deno KV

基于Deno KV的MCP服务实现

article

README

🚀 在Claude桌面中的使用指南

本项目主要介绍了在Claude桌面环境下的配置使用方式,通过特定的JSON配置文件来指定运行的命令及参数。

🚀 快速开始

在Claude桌面中使用时,可通过以下JSON配置来运行相关服务:

{
  "mcpServers": {
    "denokv": {
      "command": "deno",
      "args": [
        "--unstable-kv",
        "jsr:@divy/mcp-deno-kv"
      ]
    }
  }
}

💻 使用示例

基础用法

上述JSON配置即为基础的使用示例,下面对配置中的关键属性进行详细解释:

  • command:指定要运行的命令,这里是deno
  • args:传递给命令的参数列表。

通过这样的配置,你可以在Claude桌面中顺利运行相关服务。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client