This is the official repository of Keyshade MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"keyshade-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This is the official repository of Keyshade MCP Server
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security / developer-tools
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
40+ production-ready SwiftUI recipes for building full-stack iOS apps via MCP.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Keyshade Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This is the official repository of Keyshade MCP Server
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
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"
}
}
}
}
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.