- MCP — Model Context Protocol. The app runs a small local server via
npx, so it needs Node.js on your machine. - Octen skills — Agent Skills standard. The app runs it directly; when the app executes skills in a hosted sandbox, that’s ideal if you don’t have Node.
MCP
Before you start
- An Octen API key (API Platform).
- Claude Desktop
- Node.js 18+ — the server runs via
npx.
Open the MCP config
In Claude Desktop, open Settings → Developer, then click Edit Config to open 
claude_desktop_config.json.
Add Octen MCP
Add
octen under mcpServers, with your key in env:Merge this into the file — don’t replace it.
mcpServers may already exist (often empty: "mcpServers": {}), and the file may hold other settings. Keep them all — just put the octen block inside the existing mcpServers.Octen skills
Octen offers several skills — this guide installsocten-search as an example. You add any other Octen skill the same way.
Before you start
- An Octen API key (API Platform).
- Code execution enabled in Settings → Capabilities (available on Free, Pro, and Max; in an organization, an admin enables it in org settings).
Enable code execution and allow Octen's domain
Open Settings → Capabilities and turn on Code execution and file creation, then turn on Allow network egress.Network egress defaults to package managers only, so the calls to Octen stay blocked until you allow its domain — add
*.octen.ai to the allowed domains.Who can add the domain depends on your plan. On Pro / Max you add it yourself. On Team / Enterprise an admin adds it in Organization settings → Capabilities. Free plans can’t add custom domains — use MCP instead.
Add the skill
Download 

octen-search.zip from the octen-skills repo and unzip it. Open Customize → Skills, click the + at the top of the list, then choose Create skill → Upload a skill and select skills/octen-search/SKILL.md.

Turn on the skill in a chat
In a new chat, click the +, choose Skills, and select octen-search to turn it on for the conversation.

Try it
Ask the assistant something that needs the live web:- Search the web for daily news and summarize the top three.
Troubleshooting
| Symptom | Fix |
|---|---|
| MCP tools don’t appear | Fully quit and reopen the app; confirm the MCP config is valid JSON. |
spawn npx ENOENT | Node isn’t installed or isn’t on the app’s PATH — install Node, or put the absolute path to npx in command. |
| Skill can’t reach Octen | Network is blocked. Check Enable code execution and allow Octen’s domain part or use MCP instead |
