Digital experience analytics with session replay.
## FullStory MCP Server: Digital Experience Intelligence The **FullStory MCP Server** integrates FullStory's digital experience platform into Google Antigravity. This enables session replay, heatmaps, and AI-powered insights to understand and improve user experiences. ### Why FullStory MCP? FullStory reveals the complete picture: - **Session Replay**: HD session recordings - **AI Insights**: Automatic issue detection - **Frustration Signals**: Rage clicks, dead clicks - **Searchable Sessions**: Find specific behaviors - **Privacy Controls**: Built-in PII protection ### Key Features #### 1. Search Sessions ```python import requests headers = {"Authorization": f"Basic {api_key}"} response = requests.post( "https://api.fullstory.com/segments/v1/sessions/search", headers=headers, json={ "filter": { "type": "AND", "filters": [ {"type": "Event", "eventType": "click", "targetText": "Checkout"}, {"type": "FrustrationSignal", "signalType": "rage_click"} ] }, "limit": 50 } ) for session in response.json()["sessions"]: print(f"Session: {session['sessionId']} - User: {session['userId']}") ``` #### 2. Get Session Details ```python # Get session playback URL response = requests.get( f"https://api.fullstory.com/sessions/v1/{session_id}", headers=headers ) session = response.json() print(f"Replay URL: {session['playbackUrl']}") print(f"Duration: {session['duration']}s") ``` #### 3. User Data ```python # Enrich user data requests.post( "https://api.fullstory.com/users/v1", headers=headers, json={ "uid": "user-123", "displayName": "John Doe", "email": "john@example.com", "properties": {"plan": "premium"} } ) ``` ### Configuration ```json { "mcpServers": { "fullstory": { "command": "npx", "args": ["-y", "@anthropic/mcp-fullstory"], "env": { "FULLSTORY_API_KEY": "your-api-key", "FULLSTORY_ORG_ID": "your-org-id" } } } } ``` ### Use Cases **Bug Investigation**: Watch sessions with errors. **UX Optimization**: Find frustration points. **Support**: View customer session history. The FullStory MCP Server brings digital experience intelligence to Antigravity.
{
"mcpServers": {
"fullstory": {}
}
}