Integrations
Integrating with Claude
You can integrate the Fastino Personalization API directly with Claude to give it persistent, user-aware memory and context. Claude can call Fastino tools through either:
The Anthropic Tools API — by registering Fastino as a custom tool within Claude workflows.
An MCP (Model Context Protocol) server — the same architecture used for ChatGPT, enabling Claude to query and update user data securely.
Overview
By connecting Claude with Fastino, your assistants gain:
Personalized reasoning and adaptive tone.
Continuous learning from user events and documents.
Seamless context retrieval across sessions.
GDPR-compliant, revocable user memory.
Claude becomes contextually aware of who the user is, how they act, and what they care about, without storing any private data directly.
Architecture
Flow Overview
Claude receives a user prompt.
It calls the registered Fastino tool (or MCP endpoint).
The tool queries Fastino for personalized data (
/queryor/chunks).Fastino returns relevant snippets, summaries, or answers.
Claude incorporates these into its next model output.
Prerequisites
A Fastino API key
Access to Claude Tools API or MCP integration (Anthropic developer access)
A registered user in Fastino (
/register)Python 3.9+ or Node.js 18+ runtime for proxy setup
Example: Claude Tools Integration (Python)
Use Anthropic’s Tools API to define Fastino as an external retriever.
Example: MCP Integration with Claude
Claude can also connect to Fastino through your existing Fastino MCP server (the same one used for ChatGPT).
In this setup:
The MCP manifest defines Fastino’s tools (
retrieve_relevant_chunks,search_or_ask,update_memory).Claude calls these tools dynamically when reasoning about the user.
Manifest Example
Once the manifest is linked in your Claude MCP configuration, the model can query user context exactly as it does with ChatGPT.
Example: Retrieving Context in Claude
Response
Claude can use this directly in its reasoning loop, personalizing responses and tone dynamically.
Updating User Memory from Claude
If a user says “Shift my focus hours to 1–4 PM,” Claude can send:
This ensures Fastino’s world model stays synchronized across both Claude and other connected agents.
Use Cases
Use Case | Description |
|---|---|
Personalized Claude Assistants | Build assistants that mirror tone, reasoning style, and behavior. |
Collaborative AI Workflows | Share user context between Claude and ChatGPT through Fastino’s MCP. |
Hybrid Memory Architectures | Combine Fastino’s personalized retrieval with Claude’s native contextual memory. |
Proactive Agents | Claude can proactively recall preferences, routines, or people graphs. |
Authentication
Fastino requests must include:
Claude’s Tool or MCP runtime uses your configured Fastino key securely via environment variable:
Error Handling
Fastino’s responses are fully JSON-compliant and safe to pass through Anthropic’s structured tool interface.
Example error:
If a user is not yet registered, Claude can call /register automatically to initialize them.
Best Practices
Use short summaries (
/summary) for Claude’s context window (<1500 chars).Retrieve context before each response for real-time personalization.
Log new signals to Fastino after every session.
Combine
search_or_askwith Claude’s tool reasoning for multi-turn personalization.Use different keys for sandbox and live modes.
Respect privacy: don’t send PII in query text.
Example End-to-End Flow
Claude user logs in → workspace identifies
user_id.Claude retrieves personalization data from Fastino.
Claude generates response using adaptive tone and behavior.
User updates preferences → sent back to Fastino via
/ingest.Memory propagates across connected tools (ChatGPT, Pioneer, etc.).
Summary
Integrating Fastino with Claude gives you a unified, compliant, and adaptive personalization layer across Anthropic’s ecosystem.
Claude becomes capable of true continuity and behavioral understanding — leveraging Fastino’s user world models to recall context, predict behavior, and personalize every conversation.
Next, continue to Personalization Use Cases → Overview to explore how these integrations power advanced agent capabilities.
Join our Discord Community