@growthnirvana/claude-mcp-installer
v1.0.4
Published
CLI and plugin package for Growth Nirvana MCP + Claude skills.
Maintainers
Readme
Growth Nirvana Claude MCP + Skills
Install and maintain a ready-to-run MCP server entry and Growth Nirvana skills for Claude Code/editor workflows.
Why this is the best install UX
- Users do not clone repos or edit JSON manually.
npxalways runs the latest installer (or a pinned version).- Installer updates a project-local
.mcp.jsonsafely, preserving other MCP servers. - Includes Claude-compatible skills in standard
skills/<skill>/SKILL.mdformat. - Includes a standard Claude plugin manifest at
.claude-plugin/plugin.json. - Works as a repeatable command for onboarding and support.
Quick Start
1) Initialize project MCP config
npx @growthnirvana/claude-mcp-installer initThis adds an MCP server entry named growth-nirvana to:
./.mcp.json(project root)
2) Install skills into your project
npx @growthnirvana/claude-mcp-installer add-skillsThis installs skills to:
./.claude/skills/
Then reload your editor (VS Code/Cursor/Claude Code) so MCP config and skills are re-read.
Claude Plugin Structure
This repo also ships a standard Claude plugin layout:
.claude-plugin/plugin.jsonskills/<skill-name>/SKILL.md- supporting files (
reference.md,examples.md, etc.)
Commands
npx @growthnirvana/claude-mcp-installer init
npx @growthnirvana/claude-mcp-installer init --force
npx @growthnirvana/claude-mcp-installer init --pin-server-version 1.2.3
npx @growthnirvana/claude-mcp-installer remove
npx @growthnirvana/claude-mcp-installer add-skills
npx @growthnirvana/claude-mcp-installer add-skills --globalOptions
--config <path>: custom config file path--server-name <name>: MCP server key (default:growth-nirvana)--force: overwrite existing server entry when runninginit--pin-server-version <version>: pingrowth-nirvana-mcp-serverversion--global: foradd-skills, install to~/.claude/skills--target <path>: foradd-skills, install to a custom skills directory
API Key
The installer does not write GROWTH_NIRVANA_API_KEY into .mcp.json.
Your editor/runtime starts MCP servers as child processes, and those processes inherit runtime environment variables.
So the key is read at runtime from environment variables available to your editor session.
Security Best Practices
- Do not commit secret values in repo-local config files.
- If you use project-local MCP config, add it to
.gitignorewhen it may contain secrets. - Keep API keys in environment variables, not JSON config.
Suggested .gitignore entries:
# MCP config files (may contain secrets)
mcp.json
.mcp.json
.cursor/mcp.jsonSetting GROWTH_NIRVANA_API_KEY Safely
Recommended (per-project shell session):
export GROWTH_NIRVANA_API_KEY="your_api_key_here"Then start/restart your editor from that shell session.
Check it was set:
echo "$GROWTH_NIRVANA_API_KEY"Persistent shell profile setup:
echo 'export GROWTH_NIRVANA_API_KEY="your_api_key_here"' >> ~/.zshrc
source ~/.zshrcHow the read path works:
.mcp.jsonstarts the server withnpx -y growth-nirvana-mcp-server.- Your editor/runtime passes its environment to that process.
- The server reads
GROWTH_NIRVANA_API_KEYfrom that inherited environment.
Releasing (Assumes v1.0.0 already exists)
Use this flow for every release after v1.0.0 so npm version, git tag, and GitHub stay in sync.
# 1) Ensure working tree is clean
git status
# 2) Commit any non-release edits
git add .
git commit -m "chore: prepare release"
# 3) Bump version and create release commit + tag together
# (from v1.0.0 this creates v1.0.1)
npm version patch -m "release: v%s"
# 4) Publish that version to npm
npm publish --access public
# 5) Push commits and tags to GitHub
git push origin main --follow-tagsNotes:
- Do not manually create release tags when using
npm version. - If
v1.0.0is already on npm and GitHub, the next patch release should bev1.0.1.
