npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@arvoretech/aws-secrets-manager-mcp

v1.0.4

Published

AWS Secrets Manager MCP Server for managing secrets

Readme

AWS Secrets Manager MCP Server

Install MCP Server

MCP server for managing AWS Secrets Manager secrets.

Features

  • Create new secrets
  • Update existing secrets
  • Get secret values
  • List all secrets
  • Delete secrets
  • Describe secret metadata

Installation

npm install -g @arvoretech/aws-secrets-manager-mcp --registry=https://npm.pkg.github.com

Or configure your .npmrc:

echo "@arvoretech:registry=https://npm.pkg.github.com" >> ~/.npmrc
npm install -g @arvoretech/aws-secrets-manager-mcp

Setup

Prerequisites

  • Node.js 18+
  • AWS credentials configured

Configuration

You can configure AWS credentials in multiple ways:

Option 1: Using AWS Profile (Recommended)

Use an AWS profile from your ~/.aws/credentials and ~/.aws/config:

AWS_PROFILE=your-profile-name
AWS_REGION=us-east-1

This method supports IAM roles with assume role automatically.

Option 2: Using Direct Credentials

Set the following environment variables:

AWS_ACCESS_KEY_ID=your_access_key
AWS_SECRET_ACCESS_KEY=your_secret_key
AWS_REGION=us-east-1

Option 3: AWS SDK Default Credential Chain

Leave environment variables unset to use the AWS SDK default credential chain (recommended for EC2/ECS/Lambda environments).

Usage with Claude Desktop

Add to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "aws-secrets-manager": {
      "command": "npx",
      "args": ["-y", "@arvoretech/aws-secrets-manager-mcp"],
      "env": {
        "AWS_REGION": "us-east-1",
        "AWS_PROFILE": "your-profile"
      }
    }
  }
}

Or using direct credentials:

{
  "mcpServers": {
    "aws-secrets-manager": {
      "command": "npx",
      "args": ["-y", "@arvoretech/aws-secrets-manager-mcp"],
      "env": {
        "AWS_ACCESS_KEY_ID": "your-access-key",
        "AWS_SECRET_ACCESS_KEY": "your-secret-key",
        "AWS_REGION": "us-east-1"
      }
    }
  }
}

Development

# Install dependencies
pnpm install

# Run in development mode
pnpm dev

# Build
pnpm build

# Test
pnpm test
pnpm test:cov

Tools

create_secret

Create a new secret in AWS Secrets Manager.

Parameters:

  • name (string, required): Secret name
  • secretValue (string, required): Secret value
  • description (string, optional): Secret description
  • tags (object, optional): Key-value tags

update_secret

Update an existing secret value.

Parameters:

  • secretId (string, required): Secret name or ARN
  • secretValue (string, required): New secret value

get_secret

Retrieve a secret value.

Parameters:

  • secretId (string, required): Secret name or ARN
  • versionStage (string, optional): Version stage (default: AWSCURRENT)

list_secrets

List all secrets.

Parameters:

  • maxResults (number, optional): Maximum number of results

delete_secret

Delete a secret.

Parameters:

  • secretId (string, required): Secret name or ARN
  • forceDelete (boolean, optional): Force delete without recovery window
  • recoveryWindowInDays (number, optional): Recovery window (7-30 days)

describe_secret

Get secret metadata.

Parameters:

  • secretId (string, required): Secret name or ARN

License

MIT