MCP Catalogs
Home

keyshade-mcp

by keyshade-xyz·8·Score 37

Keyshade MCP server provides secure API access to manage secrets and keys within development environments.

developer-toolssecurityproductivity
4
Forks
1
Open issues
5 mo ago
Last commit
2d ago
Indexed

Overview

The keyshade-mcp server is an MCP implementation that bridges local development environments with Keyshade's secret management capabilities. It allows developers to securely access and manage API keys, tokens, and other sensitive credentials directly through their IDEs. The server communicates via stdio protocol and requires an API key for authentication.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Securely retrieving API keys and secrets during development
you:Automating credential management in CI/CD pipelines
you:Accessing sensitive environment variables without hardcoding
you:What is the purpose of the KEYSHADE_API_KEY environment variable?
you:Can I use this MCP server with IDEs other than VSCode?

When to choose this

Choose this if you're already using Keyshade services and want to integrate them with Claude Desktop or VSCode through MCP.

When NOT to choose this

Don't choose this if you're not using Keyshade services or need a more comprehensive API integration solution.

Comparable tools

other-api-mcp-serverscustom-api-integration

Installation

Installation

  1. Clone the repository:
git clone https://github.com/keyshade-xyz/keyshade-mcp.git
cd keyshade-mcp
  1. Install dependencies:
pnpm install
  1. Build the project:
pnpm build

Configuration for Claude Desktop

Add the following to your claude_desktop_config.json:

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

FAQ

What is the purpose of the KEYSHADE_API_KEY environment variable?
The KEYSHADE_API_KEY authenticates your connection to the Keyshade service, allowing the MCP server to securely access your secrets and keys.
Can I use this MCP server with IDEs other than VSCode?
Yes, any MCP client that supports stdio protocol can be configured with this server, including other IDEs and applications that implement MCP.

Compare keyshade-mcp with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.