@kireo/mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| KIREO_API_KEY | Yes | Bearer token (ki_sk_…). Required. | |
| KIREO_API_URL | No | Override for self-host. | https://api.kireo.app |
| KIREO_LOG_LEVEL | No | debug / info / warn / error / silent. | info |
| KIREO_PROXY_URL | No | HTTP(S) proxy. | |
| KIREO_TELEMETRY | No | Set to 0 to disable device-id header. | 1 |
| KIREO_RETRY_BASE_MS | No | Exponential backoff base. | 200 |
| KIREO_ACCEPT_LANGUAGE | No | Locale for error hints. | en |
| KIREO_REQUEST_TIMEOUT_MS | No | Per-request timeout in ms, max 300000 (env alias: KIREO_TIMEOUT_MS). | 60000 |
| KIREO_RETRY_MAX_ATTEMPTS | No | 5xx/429 retries (alias: KIREO_RETRY_MAX). | 3 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| memory_saveA | Persist a long-term memory for the current user. When to use:
When NOT to use:
Returns: { id, created_at, schema_version, embedding_status } — use memory_get for the full record. |
| memory_searchA | Hybrid semantic + keyword search over the user's memories. When to use:
When NOT to use:
Returns: ranked list of MemoryRecord with a raw RRF relevance |
| memory_recallA | Replay recent or important memories from a namespace, without a query. When to use:
When NOT to use:
|
| memory_getA | Fetch a single memory by id. When to use:
When NOT to use:
|
| memory_updateA | Patch an existing memory. Only the fields you provide are changed. When to use:
When NOT to use:
|
| memory_deleteA | Delete a memory. Defaults to a soft delete (30-day recovery window). When to use:
When NOT to use:
Note: deletes are always soft — the API has no immediate hard delete. Soft-deleted memories are purged permanently after the 30-day window. |
| memory_list_namespacesA | List all namespaces the current user has, with per-namespace counts. When to use:
Returns: array of { name, created_at }. |
| memory_healthA | Probe the Kireo service and report local + remote health. When to use:
Returns: { local: { server_version, node_version, platform }, remote: { status } }. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct memory operation: get by ID, search by query, recall chronological feed, save new, update existing, delete, plus health check and namespace listing. Overlap between search and recall is clarified by their descriptions, making them clearly distinguishable.
All tools follow the 'memory_<verb>' pattern consistently (memory_save, memory_search, memory_delete, etc.). The verb for listing namespaces uses two words (list_namespaces) but still fits the pattern harmoniously.
8 tools is a well-scoped count for a memory management server. It covers the essential CRUD operations (save, get, search, recall, update, delete) plus auxiliary tools (health, list_namespaces) without unnecessary bloat.
The tool surface is complete for the domain: create (save), read by ID (get), search, chronological recall (recall), update, soft delete, plus namespace management and health check. No obvious gaps for typical memory workflows.