Astria-Index
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ASTRIA_API_KEY | Yes | Your Astria API key. | |
| ASTRIA_ENDPOINT | Yes | Your dedicated Astria memory infrastructure endpoint URL provided in the dashboard. |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| rememberA | Save something to your long-term memory. Anything you save here persists forever and can be found later with Use this when:
Args: content: What to remember — facts, decisions, preferences, ideas, project context. Be specific and include reasoning when possible. category: Tag for organization. One of: preference, fact, decision, idea, project, person, general. If omitted, auto-categorized as "general". importance: Priority level — "low", "normal", or "high". High-importance memories surface first in recall results. Returns: Confirmation with the assigned memory ID. Returns an error message if the content is empty or the server is unreachable. |
| recallA | Search your memories by meaning, not keywords. Uses semantic similarity to find the most relevant memories you've saved. Results are ranked by how closely they match your query. Use this when:
Args: query: What you're looking for, in natural language. Longer, more specific queries produce better results than single words. limit: Maximum results to return (default 5, max 20). Use higher limits when exploring a broad topic. category: Optional filter — only return memories tagged with this category. One of: preference, fact, decision, idea, project, person, general. Returns: A ranked list of matching memories with their IDs, content, category, importance, and similarity score. Returns an empty list if no matches found. Returns an error message if the server is unreachable. |
| forgetA | Remove a specific memory permanently from your knowledge graph. This action is irreversible — the memory and its embeddings are deleted.
Use Use this when:
Do NOT use this to "update" a memory — instead, forget the old one
and Args:
memory_id: The unique memory identifier (e.g., "mem_abc123") obtained
from Returns: Confirmation that the memory was deleted. Returns an error if the memory_id doesn't exist or has already been deleted. |
| list_memoriesA | Browse your stored memories, ordered most recent first. Unlike Use this when:
Args: category: Optional filter — only return memories with this tag. One of: preference, fact, decision, idea, project, person, general. Omit to see all categories. limit: How many to return (default 20, max 100). Returns: A list of memories with IDs, content, category, importance, and timestamps. Returns an empty list if no memories exist (or none match the filter). |
| my_memory_statsA | See a dashboard overview of your entire memory network. Shows total counts broken down by category, plus active sessions, saved notes, learned insights, and embedding statistics. Use this when:
Returns: A statistics object with memory counts by category, session counts (active vs completed), note count, insight count, and embedding count. All counts are zero for a fresh instance. |
| record_insightA | Record a cause-and-effect pattern you've discovered. Insights are the deepest memory tier — understanding WHY things happen. Over time, your memory builds a library of patterns that surface automatically when similar situations recur. If the same pattern+cause is recorded again, the confidence score increments rather than creating a duplicate. Use this when:
Args: pattern: The observable symptom or recurring situation. cause: The root cause — why this happens. solution: How to fix or prevent it. confidence: How certain you are this cause is correct (0.0 to 1.0). Use 0.5 for hypotheses, 0.7 for likely, 1.0 for confirmed. Returns: The insight ID and how many times this exact pattern has been observed. If this pattern+cause was seen before, returns the updated confidence count. |
| my_insightsA | Browse your discovered cause-and-effect patterns. Returns insights ranked by observation frequency — patterns seen multiple times appear first, indicating higher reliability. Use this when:
Args: limit: Maximum insights to return (default 20, max 50). Returns: A list of insights with pattern, cause, solution, confidence score, and observation count. Returns an empty list if no insights recorded yet. |
| start_sessionA | Start a working session for cross-conversation continuity. Sessions let you pick up exactly where you left off, even days or weeks later in a completely new conversation. A session tracks your goal, progress, and related memories. Use this when:
Do NOT start a session for quick, single-conversation tasks.
Call Args: description: What you're working on — stored verbatim and used to restore context when resuming. Be specific enough that you'll understand the goal when you come back later. Returns:
A session ID (e.g., "s001") to use with |
| resume_sessionA | Resume a previous session and get full context to continue working. Retrieves the session's description, progress, related memories, notes, and any sub-tasks — everything needed to continue where you left off. Use this when:
Always call Args:
session_id: The session identifier (e.g., "s001") from Returns: Full session context including description, status, timestamps, related memories, notes, and progress. Returns an error if the session_id doesn't exist or has already been completed. |
| end_sessionA | End a session and record what was accomplished. Marks the session as completed and optionally saves a summary.
Consider calling Use this when:
The session data is retained for 48 hours after completion, then auto-expires. Promoted memories persist forever. Args: session_id: The session to complete (e.g., "s001"). summary: Optional final summary of the outcome. If omitted, the session closes without a summary. Include what was accomplished and any follow-up items. Returns: The final session state with status "completed". Returns an error if the session doesn't exist or was already ended. |
| my_sessionsA | List all active sessions you can resume. Call this at the start of every new conversation to check for
interrupted work. If sessions exist, use Use this when:
Returns: A list of active sessions with IDs, descriptions, status, and last-updated timestamps. Returns an empty list if no active sessions. Completed sessions are not shown (they auto-expire after 48 hours). |
| promote_sessionA | Save the most important things from a session as permanent memories. Session data expires 48 hours after completion. Use this to extract key learnings before ending a session — promoted items become permanent memories that persist forever. Use this when:
Args: session_id: The session to promote from (e.g., "s001"). Must be an active (not yet completed) session. key_takeaways: List of strings — each becomes a permanent memory. Be specific and include context so they're useful standalone. Returns: Count of how many takeaways were promoted to permanent memory. Returns an error if the session doesn't exist or key_takeaways is empty. |
| save_noteA | Save a named note for later retrieval. Notes are stored by name and can be retrieved exactly with Use this when:
If a note with the same name already exists, it is overwritten. Args: name: A short, descriptive name (e.g., "api-auth-flow", "meeting-notes-q1"). Use lowercase with hyphens for consistency. content: The note content. Markdown is supported. No size limit, but keep it focused — use multiple notes for different topics. session_id: Optional session to attach this note to. Notes attached to sessions appear when that session is resumed. Returns: Confirmation that the note was saved. Returns an error if name or content is empty. |
| get_noteA | Retrieve a saved note by its exact name. Fetches the full content of a note previously created with Use this when:
If you're not sure of the note name, use Args: name: The exact note name used when saving (case-sensitive). session_id: Required if the note was saved with a session_id. Omit for notes saved without a session. Returns: The full note content. Returns an error if no note exists with that name, or if session_id is required but not provided. |
| getting_startedA | Get the complete Astria operating guide. Returns a comprehensive guide covering all available tools, recommended workflows, conventions, and best practices for working with persistent memory effectively. Use this when:
Returns: The full Astria setup and usage guide as formatted text. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PL-ODIN/astria-plugin'
If you have feedback or need assistance with the MCP directory API, please join our Discord server