MCP ExplorerExplorer

Keyshade Mcp

@keyshade-xyzon 9 months ago
4 MPL-2.0
FreeCommunity
AI Systems
#claude#claude-ai#github-copilot#javascript#keyshade#llm#mcp#mcp-server#modelcontextprotocol#node#nodejs#pnpm#secret-management#secrets-manager#security#typescript#vscode-settings
This is the official repository of Keyshade MCP Server

Overview

What is Keyshade Mcp

Keyshade MCP is an official repository for the Keyshade MCP Server, designed to facilitate the development and deployment of applications using the MCP architecture.

Use cases

Use cases for Keyshade MCP include developing RESTful APIs, integrating third-party services, and building scalable applications that require efficient communication between components.

How to use

To use Keyshade MCP, clone the repository from GitHub, install the necessary dependencies using pnpm, and build the project. Configuration for the MCP server can be done in the .vscode/mcp.json file or the claude_desktop_config.json file, specifying the command and environment variables.

Key features

Key features of Keyshade MCP include easy setup via Git, dependency management with pnpm, customizable server configurations, and support for environment variables to manage API keys securely.

Where to use

Keyshade MCP can be used in software development environments, particularly for applications that require a modular and scalable architecture, such as web services and microservices.

Content

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
    

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.

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers