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
npx keyshade-mcpThis 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
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
keyshade-mcp
This is the official repository of Keyshade MCP Server
Getting Started
To get started with Keyshade MCP server, follow these steps:
-
Clone the repository:
git clone https://github.com/keyshade-xyz/keyshade-mcp.git cd keyshade-mcp -
Install dependencies:
pnpm install -
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 toindex.jsshould 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.
