Documentation
MCP
Connect StillOnline to Cursor, Claude Desktop, or another MCP client via the stillonline-mcp npm package on your machine.
See also: REST API
Install
Nothing to deploy on a server. The editor runs npx to download the package when MCP starts.
One terminal command
Verifies the package is on the registry. In Cursor, the JSON config below is usually enough.
terminal
npx -y stillonline-mcpSetup
Do not paste your API key into the AI chat. Put it only in MCP env on your computer.
1
API key
Create a key (Pro/Ultimate), copy sk_live_… — shown once.
2
MCP config
Paste JSON into MCP settings. Replace sk_live_… with your key.
JSON
{
"mcpServers": {
"stillonline": {
"command": "npx",
"args": ["-y", "stillonline-mcp"],
"env": {
"STILLONLINE_API_KEY": "sk_live_…"
}
}
}
}3
Restart
Save, restart MCP or the editor window. Tools should appear: list_projects, create_check, …
Verify
- Without a key in logs: STILLONLINE_API_KEY is required
- Ask the agent to call list_projects
Where to open settings
| Client | Where | File |
|---|---|---|
| Cursor | Settings → MCP → Add server | ~/.cursor/mcp.json |
| Claude Desktop | Settings → Developer → Edit Config | claude_desktop_config.json |
| Other MCP clients | MCP section in your editor | Same shape (mcpServers + env) |