> ## Documentation Index
> Fetch the complete documentation index at: https://developer.kyberis.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Generic Agent Setup

> Use Kyberis with any agent that supports HTTP MCP servers.

Before you run the setup commands, install [Node.js 20 or newer with `npx`](/install/node-npx).

Install the generic Kyberis skill bundle into a directory your agent can read:

```bash theme={null}
npx -y @kyberis-ai/agent-skills install generic --dir ./kyberis-agent-skill
```

Then connect MCP with the generic setup flow. Generic mode does not update a client config file automatically:

```bash theme={null}
npx -y @kyberis-ai/mcp connect generic --token kct_abc123 --json
```

Copy the returned values into your client configuration:

* Transport: HTTP
* Server URL: the returned `mcp_url`
* Header: `Authorization: Bearer <token>`

## Test Prompt

```text theme={null}
Use Kyberis to resolve this subject before making any recommendation. If the resolution is ambiguous, return candidates and ask for clarification.
```

## Direct REST Fallback

If your agent cannot use MCP, create an API key in [API keys](https://app.kyberis.ai/api-keys), then call the REST API directly with:

```http theme={null}
Authorization: ApiKey <key_id>:<secret>
```

Use [Authentication](/development) and the [API reference](/api-reference/introduction) for direct integration details.
