Umami (Privacy Analytics) MCP Server for LlamaIndexGive LlamaIndex instant access to 53 tools to Add Team User, Admin List Teams, Admin List Users, and more
LlamaIndex specializes in data-aware AI agents that connect LLMs to structured and unstructured sources. Add Umami (Privacy Analytics) as an MCP tool provider through Vinkius and your agents can query, analyze, and act on live data alongside your existing indexes.
Ask AI about this MCP Server for LlamaIndex
The Umami (Privacy Analytics) MCP Server for LlamaIndex is a standout in the Marketing Automation category — giving your AI agent 53 tools to work with, ready to go from day one.
Vinkius delivers Streamable HTTP and SSE to any MCP client
import asyncio
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
async def main():
# Your Vinkius token. get it at cloud.vinkius.com
mcp_client = BasicMCPClient("https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp")
mcp_tool_spec = McpToolSpec(client=mcp_client)
tools = await mcp_tool_spec.to_tool_list_async()
agent = FunctionAgent(
tools=tools,
llm=OpenAI(model="gpt-4o"),
system_prompt=(
"You are an assistant with access to Umami (Privacy Analytics). "
"You have 53 tools available."
),
)
response = await agent.run(
"What tools are available in Umami (Privacy Analytics)?"
)
print(response)
asyncio.run(main())
* Every MCP server runs on Vinkius-managed infrastructure inside AWS - a purpose-built runtime with per-request V8 isolates, Ed25519 signed audit chains, and sub-40ms cold starts optimized for native MCP execution. See our infrastructure
About Umami (Privacy Analytics) MCP Server
Connect your Umami instance to any AI agent to monitor your privacy-focused analytics and manage your infrastructure through natural language. Umami is the open-source, privacy-friendly alternative to Google Analytics, and this MCP server gives you full control over your data.
LlamaIndex agents combine Umami (Privacy Analytics) tool responses with indexed documents for comprehensive, grounded answers. Connect 53 tools through Vinkius and query live data alongside vector stores and SQL databases in a single turn. ideal for hybrid search, data enrichment, and analytical workflows.
What you can do
- Event Tracking — Send custom events and page views directly to your Umami instance using the
send_eventtool. - Website Management — List and manage all websites associated with your account or the entire instance using
get_me_websitesoradmin_list_websites. - User & Team Administration — Perform administrative tasks like creating, updating, or deleting users and managing teams with tools like
create_userandadmin_list_teams. - Session Insights — Retrieve information about your current session and authorized access levels using
get_me. - Self-Hosted Support — Seamlessly connect to your own infrastructure using the
logintool to authenticate and retrieve tokens.
The Umami (Privacy Analytics) MCP Server exposes 53 tools through the Vinkius. Connect it to LlamaIndex in under two minutes — credentials fully managed, no infrastructure to provision, no vendor lock-in. Your configuration, your data, your control.
All 53 Umami (Privacy Analytics) tools available for LlamaIndex
When LlamaIndex connects to Umami (Privacy Analytics) through Vinkius, your AI agent gets direct access to every tool listed below — spanning web-analytics, privacy-focused, event-tracking, and more. Every call runs in a secure, isolated environment with full audit visibility. Beyond a simple connection, you get real-time monitoring of agent activity, enterprise governance, and optimized token usage.
Add team user on Umami (Privacy Analytics)
Add user to team
Admin list teams on Umami (Privacy Analytics)
Returns all teams (Admin only)
Admin list users on Umami (Privacy Analytics)
Returns all users (Admin only)
Admin list websites on Umami (Privacy Analytics)
Returns all websites (Admin only)
Create attribution report on Umami (Privacy Analytics)
Marketing attribution report
Create funnel report on Umami (Privacy Analytics)
Conversion funnel report
Create link on Umami (Privacy Analytics)
Creates a link
Create pixel on Umami (Privacy Analytics)
Creates a pixel
Create report on Umami (Privacy Analytics)
Creates a report
Create retention report on Umami (Privacy Analytics)
User retention report
Create revenue report on Umami (Privacy Analytics)
Revenue report
Create team on Umami (Privacy Analytics)
Creates a team
Create user on Umami (Privacy Analytics)
Creates a user (Admin only)
Create website on Umami (Privacy Analytics)
Creates a website
Delete user on Umami (Privacy Analytics)
Deletes a user (Admin only)
Delete website on Umami (Privacy Analytics)
Deletes a website
Get me on Umami (Privacy Analytics)
Get information about the current session
Get me teams on Umami (Privacy Analytics)
Get all teams for the current user
Get me websites on Umami (Privacy Analytics)
Get all websites for the current user
Get realtime stats on Umami (Privacy Analytics)
Realtime stats within the last 30 minutes
Get session on Umami (Privacy Analytics)
Individual session details
Get session activity on Umami (Privacy Analytics)
Activity for a session
Get team users on Umami (Privacy Analytics)
Get team members
Get team websites on Umami (Privacy Analytics)
Get team websites
Get user on Umami (Privacy Analytics)
Gets a user by ID (Admin only)
Get user teams on Umami (Privacy Analytics)
Gets all teams belonging to a user (Admin only)
Get user websites on Umami (Privacy Analytics)
Gets all websites belonging to a user (Admin only)
Get website on Umami (Privacy Analytics)
Gets a website by ID
Get website active on Umami (Privacy Analytics)
Active users in the last 5 minutes
Get website daterange on Umami (Privacy Analytics)
Available data date range
Get website event data on Umami (Privacy Analytics)
Event data grouped by event
Get website event data events on Umami (Privacy Analytics)
Event data names and counts
Get website event data fields on Umami (Privacy Analytics)
Property and value counts
Get website events on Umami (Privacy Analytics)
Website event details
Get website events stats on Umami (Privacy Analytics)
Aggregated event statistics
Get website metrics on Umami (Privacy Analytics)
Metrics for a given time range (type: path, browser, os, etc.)
Get website metrics expanded on Umami (Privacy Analytics)
Expanded metrics including bounces and total time
Get website pageviews on Umami (Privacy Analytics)
Pageviews and sessions series data
Get website sessions on Umami (Privacy Analytics)
Website session details
Get website sessions stats on Umami (Privacy Analytics)
Summarized session statistics
Get website stats on Umami (Privacy Analytics)
Summarized website statistics (pageviews, visitors, etc.)
Join team on Umami (Privacy Analytics)
Join a team via access code
List links on Umami (Privacy Analytics)
Returns all user links
List pixels on Umami (Privacy Analytics)
Returns all user pixels
List reports on Umami (Privacy Analytics)
Get all reports by website ID
List teams on Umami (Privacy Analytics)
Returns all teams
List websites on Umami (Privacy Analytics)
Returns all user websites
Login on Umami (Privacy Analytics)
Login to self-hosted Umami to get a token
Reset website on Umami (Privacy Analytics)
Removes all data related to the website
Send event on Umami (Privacy Analytics)
Send an event to Umami
Update user on Umami (Privacy Analytics)
Updates a user (Admin only)
Update website on Umami (Privacy Analytics)
Updates a website
Verify token on Umami (Privacy Analytics)
Verify if the current token is still valid
Connect Umami (Privacy Analytics) to LlamaIndex via MCP
Follow these steps to wire Umami (Privacy Analytics) into LlamaIndex. The entire setup takes under two minutes — your credentials stay safe behind Vinkius.
Install dependencies
pip install llama-index-tools-mcp llama-index-llms-openaiReplace the token
[YOUR_TOKEN_HERE] with your Vinkius tokenRun the agent
agent.py and run: python agent.pyExplore tools
Why Use LlamaIndex with the Umami (Privacy Analytics) MCP Server
LlamaIndex provides unique advantages when paired with Umami (Privacy Analytics) through the Model Context Protocol.
Data-first architecture: LlamaIndex agents combine Umami (Privacy Analytics) tool responses with indexed documents for comprehensive, grounded answers
Query pipeline framework lets you chain Umami (Privacy Analytics) tool calls with transformations, filters, and re-rankers in a typed pipeline
Multi-source reasoning: agents can query Umami (Privacy Analytics), a vector store, and a SQL database in a single turn and synthesize results
Observability integrations show exactly what Umami (Privacy Analytics) tools were called, what data was returned, and how it influenced the final answer
Umami (Privacy Analytics) + LlamaIndex Use Cases
Practical scenarios where LlamaIndex combined with the Umami (Privacy Analytics) MCP Server delivers measurable value.
Hybrid search: combine Umami (Privacy Analytics) real-time data with embedded document indexes for answers that are both current and comprehensive
Data enrichment: query Umami (Privacy Analytics) to augment indexed data with live information before generating user-facing responses
Knowledge base agents: build agents that maintain and update knowledge bases by periodically querying Umami (Privacy Analytics) for fresh data
Analytical workflows: chain Umami (Privacy Analytics) queries with LlamaIndex's data connectors to build multi-source analytical reports
Example Prompts for Umami (Privacy Analytics) in LlamaIndex
Ready-to-use prompts you can give your LlamaIndex agent to start working with Umami (Privacy Analytics) immediately.
"List all websites I have access to in Umami."
"Send a 'newsletter_signup' event for website 8f2...1a on page /thanks."
"Show me all users on this Umami instance."
Troubleshooting Umami (Privacy Analytics) MCP Server with LlamaIndex
Common issues when connecting Umami (Privacy Analytics) to LlamaIndex through Vinkius, and how to resolve them.
BasicMCPClient not found
pip install llama-index-tools-mcpUmami (Privacy Analytics) + LlamaIndex FAQ
Common questions about integrating Umami (Privacy Analytics) MCP Server with LlamaIndex.
How does LlamaIndex connect to MCP servers?
Can I combine MCP tools with vector stores?
Does LlamaIndex support async MCP calls?
Explore More MCP Servers
View all →
Pipedream
7 toolsManage Pipedream serverless workflows, sources, webhooks, and raw event data natively via AI agents.

Slack Webhook Notifier
1 toolsThis MCP does exactly one thing: it sends messages to your Slack channels. That's its only function, and nothing else. Zero bloat, incredible for giving your AI agents a voice.

Doctolib
8 toolsManage medical appointments via Doctolib — search practitioners by specialty and city, track availabilities, and book consultations directly from any AI agent.

Zapier
6 toolsMonitor automated workflows, audit app connections, and search for Zap templates on Zapier — the leader in AI orchestration.
