🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@securecode/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@securecode/mcp-server

SecureCodeHQ MCP Server - Let Claude Code access your secrets securely

Source
npmnpm
Version
0.4.0
Version published
Weekly downloads
96
209.68%
Maintainers
1
Weekly downloads
 
Created
Source

@securecode/mcp-server

MCP Server for SecureCodeHQ. Lets Claude Code access your secrets securely without exposing them in the chat.

Setup (2 minutes)

1. Get your API key from securecodehq.com/en/settings

2. Add to your Claude Code config:

Edit ~/.claude.json (or ~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "securecode": {
      "command": "npx",
      "args": ["@securecode/mcp-server"],
      "env": {
        "SECURECODE_API_KEY": "sc_your_key_here"
      }
    }
  }
}

3. Restart Claude Code. That's it.

What Claude Can Do

Once connected, Claude Code can:

"Get my Stripe API key" → reads from your vault
"List my production secrets" → shows names without values
"Save this new API key as OPENAI_KEY" → creates a secret

Available Tools

ToolDescriptionInput
get-secretGet a secret value by namename: string
list-secretsList all secrets (names only, no values)tags?: string[]
create-secretCreate a new secretname, value, description?, tags?

How It Works

  • Secrets are stored encrypted in Google Secret Manager
  • Every access is logged in your audit trail (including which AI model accessed it)
  • API keys are scoped to your account with sc_ prefix
  • The MCP server runs locally via stdio transport — no data goes through third parties

Requirements

  • Node.js >= 18
  • A SecureCodeHQ account with an API key

License

MIT

Keywords

mcp

FAQs

Package last updated on 06 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts