keyshade-mcp
keyshade is a tool that provides automated workflows using JavaScript. Users can easily automate tasks and improve efficiency. It features an intuitive interface and powerful capabilities, making it useful for both developers and business users.
GitHub Stars
8
User Rating
Not Rated
Favorites
0
Views
16
Forks
2
Issues
2
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.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.
0
Followers
0
Repositories
0
Gists
0
Total Contributions
The OpenRouter Agents MCP Server implements an advanced orchestration system for AI-powered research. Utilizing the MCP protocol, it enables multiple specialized agents to collaborate for efficient information gathering and analysis. Notably, it provides the capability for conversational LLMs to delegate research tasks through the Claude research orchestrator.
claude_autoapprove is a library designed to implement an automated approval process using JavaScript. This tool provides functionality to automatically approve requests that meet specific conditions, reducing the need for manual approval work. Users can easily configure settings to build efficient workflows.