{"id":28542339,"url":"https://github.com/keyshade-xyz/keyshade-mcp","last_synced_at":"2026-07-03T22:33:50.114Z","repository":{"id":295457357,"uuid":"989157290","full_name":"keyshade-xyz/keyshade-mcp","owner":"keyshade-xyz","description":"This is the official repository of Keyshade MCP Server","archived":false,"fork":false,"pushed_at":"2025-12-28T06:13:09.000Z","size":59,"stargazers_count":8,"open_issues_count":1,"forks_count":4,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-06-04T13:32:05.086Z","etag":null,"topics":["claude","claude-ai","github-copilot","javascript","keyshade","llm","mcp","mcp-server","modelcontextprotocol","node","nodejs","pnpm","secret-management","secrets-manager","security","typescript","vscode-settings"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/keyshade-xyz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-23T16:41:21.000Z","updated_at":"2026-02-05T10:19:41.000Z","dependencies_parsed_at":"2025-05-25T17:37:24.633Z","dependency_job_id":"f1502f9e-4239-4b06-a292-6ffd471b3699","html_url":"https://github.com/keyshade-xyz/keyshade-mcp","commit_stats":null,"previous_names":["keyshade-xyz/keyshade-mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/keyshade-xyz/keyshade-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyshade-xyz%2Fkeyshade-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyshade-xyz%2Fkeyshade-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyshade-xyz%2Fkeyshade-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyshade-xyz%2Fkeyshade-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keyshade-xyz","download_url":"https://codeload.github.com/keyshade-xyz/keyshade-mcp/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyshade-xyz%2Fkeyshade-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35104114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-03T02:00:05.635Z","response_time":110,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude","claude-ai","github-copilot","javascript","keyshade","llm","mcp","mcp-server","modelcontextprotocol","node","nodejs","pnpm","secret-management","secrets-manager","security","typescript","vscode-settings"],"created_at":"2025-06-09T20:34:32.654Z","updated_at":"2026-07-03T22:33:50.110Z","avatar_url":"https://github.com/keyshade-xyz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![MseeP.ai Security Assessment Badge](https://mseep.net/pr/keyshade-xyz-keyshade-mcp-badge.png)](https://mseep.ai/app/keyshade-xyz-keyshade-mcp)\n\n# keyshade-mcp\nThis is the official repository of Keyshade MCP Server\n\n## Getting Started\n\nTo get started with Keyshade MCP server, follow these steps:\n\n1. **Clone the repository:**\n\n   ```bash\n   git clone https://github.com/keyshade-xyz/keyshade-mcp.git\n   cd keyshade-mcp\n   ```\n\n2. **Install dependencies:**\n\n   ```bash\n   pnpm install\n   ```\n\n3. **Build the project:**\n\n   ```bash\n   pnpm build\n   ```\n\n## MCP Configuration for VSCode\n\nTo 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.\n\nHere is an example configuration:\n\n```jsonc\n{\n    \"servers\": {\n        \"keyshade\": {\n            \"type\": \"stdio\",\n            \"command\": \"node\",\n            \"args\": [\n                \"YOUR_ABSOLUTE_PATH_TO/build/index.js\"\n            ],\n            \"env\": {\n                \"KEYSHADE_API_KEY\": \"YOUR_KEYSHADE_API_KEY\"\n            }\n        }\n    }\n}\n```\n\n## MCP Configuration for Claude Desktop\n\nAdd the following configuration to your `claude_desktop_config.json` file for Claude Desktop:\n\n```jsonc\n{\n    \"mcpServers\": {\n        \"keyshade\": {\n            \"command\": \"node\",\n            \"args\": [\n                \"YOUR_ABSOLUTE_PATH_TO/build/index.js\"\n            ],\n            \"env\": {\n                \"KEYSHADE_API_KEY\": \"YOUR_KEYSHADE_API_KEY\"\n            }\n        }\n    }\n}\n```\n\n\n**Explanation:**\n\n* `\"type\": \"stdio\"`: Specifies the communication protocol (standard input/output).\n* `\"command\": \"node\"`: The command to run the server (Node.js in this case).\n* `\"args\": [...]`: Arguments to pass to the command. The path to `index.js` should be absolute or relative to the workspace root.\n* `\"env\": {...}`: Environment variables to set for the server process.\n  * `\"KEYSHADE_API_KEY\"`: **Important:** Replace `\"YOUR_KEYSHADE_API_KEY\"` with your actual Keyshade API key.\n\nMake sure to replace the example path in `\"args\"` with the correct path to your `index.js` file if it differs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeyshade-xyz%2Fkeyshade-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeyshade-xyz%2Fkeyshade-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeyshade-xyz%2Fkeyshade-mcp/lists"}