tealium-mcp-server
Parse tracking specifications from Google Sheets spreadsheets, allowing users to import CSV-formatted specs directly.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tealium-mcp-serverValidate this data layer: { page: { pageName: 'Home' }, user: { isLoggedIn: true } }"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Tealium MCP Server
An MCP (Model Context Protocol) server for Tealium data layer validation, documentation generation, debugging, and code generation. Built for tag management specialists and analytics engineers.
Features
Tools
Tool | Description |
| Validate data layers against schemas and Tealium best practices |
| Generate Markdown or JSON Schema documentation from specs |
| Diagnose issues, find missing variables, detect type mismatches |
| Generate TypeScript/JavaScript code from specifications |
| Parse CSV/JSON tracking specs from spreadsheets |
Resources
Resource | Description |
| Standard data layer schema (page, user, event) |
| E-commerce schema (products, transactions) |
| Hotel industry schema (bookings, rooms, guests) |
| Basic data layer template |
| Hotel booking funnel template |
| Tealium implementation best practices |
Related MCP server: Google Webmaster MCP
Installation
# Clone or download this repository
cd tealium-mcp-server
# Install dependencies
npm install
# Build
npm run buildConfiguration
Claude Code
# Add the server to Claude Code
claude mcp add --transport stdio tealium -- node /path/to/tealium-mcp-server/dist/index.js
# Verify it's configured
claude mcp listClaude Desktop
Edit your Claude Desktop config file:
Linux/WSL: ~/.config/Claude/claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"tealium": {
"command": "node",
"args": ["/path/to/tealium-mcp-server/dist/index.js"]
}
}
}Usage Examples
Validate a Data Layer
Ask Claude:
"Validate this data layer: { page: { pageName: 'Home' }, user: { isLoggedIn: true } }"
Debug Tracking Issues
Ask Claude:
"Debug this data layer from my booking page and tell me what's wrong"
Then paste your data layer JSON from the browser console.
Generate Documentation
Ask Claude:
"Generate documentation for my tracking specification"
Then provide your spec in JSON or paste CSV content.
Generate TypeScript Code
Ask Claude:
"Generate TypeScript interfaces for my hotel booking data layer"
Parse a Tracking Spec
Ask Claude:
"Parse this tracking spec from my Google Sheet"
Then paste CSV content with columns like: variable, type, required, description
Daily Workflow
1. Validating Implementations
When a developer sends a data layer for review or when checking a live page:
"Validate this data layer against the hotel schema:
{
page: { pageName: 'Booking Confirmation', pageType: 'confirmation' },
hotel: { hotelCode: 'BCN001', hotelName: 'Barceló Sants' },
booking: { bookingId: 'RES123', bookingTotal: 450, bookingCurrency: 'EUR' }
}"2. Debugging Tracking Issues
When something isn't tracking correctly (e.g., QA finds missing data in reports):
"Debug this data layer from the booking page - events aren't firing correctly:
[paste JSON from browser console: copy(utag_data)]"The tool will identify:
Missing required variables
Wrong data types (string vs number)
Invalid dates
Empty values
PII exposure risks
3. Creating Documentation
When onboarding new developers or updating tracking specs:
"Generate documentation for our hotel booking data layer"Or from an existing spec:
"Parse this tracking spec and generate documentation:
[paste CSV from Google Sheets]"4. Generating Code for Developers
When developers need implementation code:
"Generate TypeScript code for our booking funnel data layer with these events:
- search.initiated
- hotel.viewed
- room.selected
- booking.completed"5. Reviewing New Tracking Specs
When the analytics team sends a new tracking requirement (usually a spreadsheet):
"Parse this tracking spec from our Google Sheet:
variable,type,required,description
page.pageName,string,true,Page identifier
booking.bookingTotal,number,true,Total booking amount
booking.bookingCurrency,string,true,ISO currency code
..."Quick Reference
Task | Ask Claude |
Validate data layer | "Validate this data layer: {...}" |
Debug issues | "Debug this data layer: {...}" |
Generate docs | "Generate documentation for this spec" |
Generate code | "Generate TypeScript for this data layer" |
Parse spreadsheet | "Parse this tracking spec: [CSV]" |
Get best practices | "Show me Tealium best practices" |
Get hotel template | "Show me the hotel booking template" |
Pro Tip: Browser Console
To quickly grab the data layer from any page:
// In browser DevTools console:
copy(JSON.stringify(utag_data, null, 2))Then paste it into Claude with "Debug this data layer" or "Validate this".
Testing
# Use the MCP Inspector to test
npx @modelcontextprotocol/inspector node dist/index.jsHotel Industry Schema
This server includes specialized support for hotel/travel tracking:
Search data: destination, check-in/out dates, guests, rooms
Hotel data: code, name, brand, star rating, category
Room data: type, code, capacity, amenities
Booking data: ID, status, dates, nights, rates, totals
Guest data: type, loyalty ID, tier, points
Perfect for hotel chains like Barcelo, Marriott, Hilton, etc.
Development
# Build
npm run build
# Run development (build + start)
npm run devLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/rechedev9/tealium-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server