Skip to main content
Glama
keyshade-xyz

keyshade-mcp

Official
by keyshade-xyz

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

Related MCP server: DelineaMCP

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.

Install Server
A
license - permissive license
B
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    B
    maintenance
    A personal MCP server for securely storing and accessing API keys across projects using the macOS Keychain, letting AI assistants and applications retrieve credentials through natural language.
    Last updated
    25
  • A
    license
    -
    quality
    D
    maintenance
    MCP server for the Delinea Secret Server and Platform APIs, enabling AI agents to manage secrets, users, groups, folders, roles, and access requests through natural language commands.
    Last updated
    46
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    Secrets management MCP server that injects credentials into API requests for AI agents, enforcing policies and logging all activity without exposing raw keys.
    Last updated
    90
    30
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP server for Wundervault zero-knowledge secret management. Exposes vault secrets to AI agents via the Model Context Protocol — secrets are decrypted server-side and never returned to the agent in plaintext.
    Last updated
    6
    295
    2
    AGPL 3.0

View all related MCP servers

Related MCP Connectors

  • Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.

  • An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform

  • MCP server for Gainium — manage trading bots, deals, and balances via AI assistants

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/keyshade-xyz/keyshade-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server