Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OGHAM_HOST | No | Host for SSE transport. | |
| OGHAM_PORT | No | Port for SSE transport. | 8742 |
| OLLAMA_URL | No | Ollama server URL. | http://localhost:11434 |
| DATABASE_URL | No | PostgreSQL connection string. Required if DATABASE_BACKEND is 'postgres'. | |
| SUPABASE_KEY | No | Supabase secret key (service_role). Required if DATABASE_BACKEND is 'supabase'. | |
| SUPABASE_URL | No | Your Supabase project URL. Required if DATABASE_BACKEND is 'supabase'. | |
| EMBEDDING_DIM | No | Vector dimensions. Must match your database schema. | 512 |
| OPENAI_API_KEY | No | OpenAI API key. Required if EMBEDDING_PROVIDER is 'openai'. | |
| VOYAGE_API_KEY | No | Voyage AI API key. Required if EMBEDDING_PROVIDER is 'voyage'. | |
| DEFAULT_PROFILE | No | Memory profile name. | default |
| MISTRAL_API_KEY | No | Mistral API key. Required if EMBEDDING_PROVIDER is 'mistral'. | |
| OGHAM_TRANSPORT | No | Transport mode: 'stdio' or 'sse'. | stdio |
| DATABASE_BACKEND | No | The database backend to use: 'supabase' or 'postgres'. | supabase |
| EMBEDDING_PROVIDER | No | The embedding provider to use: 'ollama', 'openai', 'mistral', or 'voyage'. | ollama |
| OLLAMA_EMBED_MODEL | No | Ollama embedding model. | embeddinggemma |
| TEMPORAL_LLM_MODEL | No | LLM model string (e.g., 'gpt-4o-mini' or 'ollama/llama3.2') to use for complex temporal search expressions. | |
| VOYAGE_EMBED_MODEL | No | Voyage embedding model. | voyage-4-lite |
| DEFAULT_MATCH_COUNT | No | Maximum results per search. | 10 |
| MISTRAL_EMBED_MODEL | No | Mistral embedding model. | mistral-embed |
| DEFAULT_MATCH_THRESHOLD | No | Similarity threshold for search results. | 0.7 |
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
No tools | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |