# Get agent context

Resolve exact active core knowledge plus relevant cited library passages and create a versioned context receipt for this task.

- Exact name: `knowledge_context_get`
- Category: Knowledge
- Required access: read
- Allowed agent roles: admin, appointment_setter, content_writer
- MCP endpoint: `https://api.funnels.akera.agency/`

## Annotations

- readOnlyHint: true

## Input JSON Schema

```json
{
  "type": "object",
  "properties": {
    "workspaceId": {
      "type": "string",
      "minLength": 1
    },
    "task": {
      "type": "string",
      "minLength": 1,
      "maxLength": 300
    },
    "intent": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2000
    },
    "tokenBudget": {
      "default": 8000,
      "type": "integer",
      "minimum": 500,
      "maximum": 50000
    }
  },
  "required": [
    "workspaceId",
    "task",
    "intent"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

## Call shape

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "knowledge_context_get",
    "arguments": {}
  }
}
```
