keyshade-mcp
by keyshade-xyz·★ 8·Score 37
Keyshade MCP server provides secure API access to manage secrets and keys within development environments.
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:
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
Installation
Installation
- Clone the repository:
git clone https://github.com/keyshade-xyz/keyshade-mcp.git
cd keyshade-mcp- Install dependencies:
pnpm install- Build the project:
pnpm buildConfiguration 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
Last updated · Auto-generated from public README + GitHub signals.