Skip to content

Commit ca78a54

Browse files
authored
Merge pull request #26 from devhelmhq/docs/token-format-and-flag-drift
docs(README): fix token format, create-flag, and MCP install drift
2 parents 3f7b40d + c66f724 commit ca78a54

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The official command-line interface for [DevHelm](https://devhelm.io) — manage
1212

1313
```bash
1414
# Authenticate
15-
$ devhelm auth login --token sk_live_...
15+
$ devhelm auth login --token dh_live_...
1616
Authenticated as you@company.com
1717
Context 'default' saved to ~/.devhelm/contexts.json
1818

@@ -27,7 +27,7 @@ $ devhelm monitors list
2727
└────┴─────────────────────┴──────┴────────┴──────────────────────────┴──────────┘
2828

2929
# Create a monitor
30-
$ devhelm monitors create --name "Checkout API" --type HTTP --url https://api.example.com/checkout --interval 30
30+
$ devhelm monitors create --name "Checkout API" --type HTTP --url https://api.example.com/checkout --frequency 60
3131

3232
# Scaffold a config file and validate it
3333
$ devhelm init
@@ -58,10 +58,10 @@ The CLI resolves credentials in this order:
5858
devhelm auth login
5959

6060
# Or set a token directly
61-
export DEVHELM_API_TOKEN=sk_live_...
61+
export DEVHELM_API_TOKEN=dh_live_...
6262

6363
# Manage multiple environments
64-
devhelm auth context create staging --api-url https://staging-api.devhelm.io --token sk_test_...
64+
devhelm auth context create staging --api-url https://staging-api.devhelm.io --token dh_test_...
6565
devhelm auth context use staging
6666
devhelm auth context list
6767
```
@@ -113,8 +113,10 @@ DevHelm is designed to work seamlessly with AI coding agents:
113113
- **[Agent Skill](https://github.com/devhelmhq/skill)** — structured instructions for Claude Code, Cursor, Codex, and other AI agents
114114

115115
```bash
116-
# Install the MCP server
117-
npm install -g @devhelm/mcp-server
116+
# Install the MCP server (Python package on PyPI)
117+
pip install devhelm-mcp-server
118+
# or, no install required:
119+
uvx devhelm-mcp-server
118120

119121
# Or add the skill to your project
120122
npx skills add devhelmhq/skill

0 commit comments

Comments
 (0)