1. Conduid
  2. Developer Tools
  3. Keyshade MCP
MCP server · Developer Tools

Keyshade MCP

This is the official repository of Keyshade MCP Server

58Fair

Scored 3 months ago · breakdown

About Keyshade MCP

Keyshade MCP is an MCP server published by keyshade-xyz in the Developer Tools category: this is the official repository of Keyshade MCP Server. It has been installed 0 times through Conduid.

The repository has 8 stars and 4 forks, with the last commit 8 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx keyshade-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Keyshade MCP

Powered by Claude · Grounded in docs

I know everything about Keyshade MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

MseeP.ai Security Assessment Badge

keyshade-mcp

This is the official repository of Keyshade MCP Server

Getting Started

To get started with Keyshade MCP server, follow these steps:

  1. Clone the repository:

    git clone https://github.com/keyshade-xyz/keyshade-mcp.git
    cd keyshade-mcp
    
  2. Install dependencies:

    pnpm install
    
  3. Build the project:

    pnpm build
    

MCP Configuration for VSCode

To configure the Keyshade MCP server, you need to create or modify the .vscode/mcp.json file in your workspace. This file contains the settings for the MCP server, including the command to start the server and any environment variables required.

Here is an example configuration:

{
    "servers": {
        "keyshade": {
            "type": "stdio",
            "command": "node",
            "args": [
                "YOUR_ABSOLUTE_PATH_TO/build/index.js"
            ],
            "env": {
                "KEYSHADE_API_KEY": "YOUR_KEYSHADE_API_KEY"
            }
        }
    }
}

MCP Configuration for Claude Desktop

Add the following configuration to your claude_desktop_config.json file for Claude Desktop:

{
    "mcpServers": {
        "keyshade": {
            "command": "node",
            "args": [
                "YOUR_ABSOLUTE_PATH_TO/build/index.js"
            ],
            "env": {
                "KEYSHADE_API_KEY": "YOUR_KEYSHADE_API_KEY"
            }
        }
    }
}

Explanation:

  • "type": "stdio": Specifies the communication protocol (standard input/output).
  • "command": "node": The command to run the server (Node.js in this case).
  • "args": [...]: Arguments to pass to the command. The path to index.js should be absolute or relative to the workspace root.
  • "env": {...}: Environment variables to set for the server process.
    • "KEYSHADE_API_KEY": Important: Replace "YOUR_KEYSHADE_API_KEY" with your actual Keyshade API key.

Make sure to replace the example path in "args" with the correct path to your index.js file if it differs.

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Keyshade MCP

How do I install Keyshade MCP?

Run npx keyshade-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Keyshade MCP safe to use with an AI agent?

Its trust score is 58 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Keyshade MCP still maintained?

The last commit was 8 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.