How to Use the Pirsch Analytics MCP in LangChain
Build privacy-first analytics pipelines in LangChain. Track hits and pull live visitor metrics without cookies.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Pirsch Analytics MCP to LangChain
Create your Vinkius account to connect Pirsch Analytics to LangChain — we handle the hosting, security, and runtime updates so you don't have to. No server setup required.
Key Capabilities
Chain privacy-first analytics directly into LangChain
The `send_event` and `send_hit` tools let your ReAct agents push live tracking data straight to Pirsch Analytics. You build a pipeline where an agent handles a user interaction, then immediately logs the page view or custom event without dropping a single cookie. LangSmith traces the exact latency of every payload you send. Batching works naturally here. If your chain processes a massive list of offline conversions, it can group them using `send_event_batch`. The agent decides when to fire the batch based on your custom logic, keeping the network calls lean while updating your dashboard in real time.
Feed real-time visitor metrics into reasoning agents
The `get_statistics_overview` tool pulls raw performance numbers into your LangChain context window. Your agent grabs the active visitor count via `get_statistics_active`, compares it against historical baselines, and generates an alert if traffic spikes. Output from the stats pull becomes the direct input for your notification chain. You do not have to guess what marketing channels are working. A chain can loop through `get_statistics_utm_source` and `get_statistics_referrer`, parse the highest converting sources, and write a summary to your database. The entire workflow stays stateless unless you explicitly bind an MCP session.
Automate client domain provisioning via MCP Server
The `create_domain` tool gives your agent the ability to spin up new tracking environments on the fly. When a new customer signs up in your SaaS app, your LangChain pipeline can automatically register their domain in Pirsch and return the tracking snippet. Managing multiple properties is just as straightforward. Your agent calls `list_domains` to audit all active sites, iterating over the list to run daily reporting tasks using `get_statistics_goals`. You get full programmatic control over your analytics infrastructure.
Set up Pirsch Analytics MCP in LangChain
Prerequisites
- Python 3.10+ installed
-
langchain-mcp-adapters+langgraphpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChainBaseToolobjects. - 2
Connect via HTTP transport
Use
MultiServerMCPClientwith"transport": "http"pointing to your Vinkius endpoint. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Create a ReAct agent
Pass the discovered tools to
create_react_agent()from LangGraph. The agent automatically routes Pirsch Analytics tool calls through the MCP protocol. - 4
Run with any LLM
Swap
ChatOpenAIforChatAnthropic,ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
async with MultiServerMCPClient({
"pirsch-analytics-mcp": {
"transport": "http",
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
}
}) as client:
tools = client.get_tools()
agent = create_react_agent(
ChatOpenAI(model="gpt-4o"),
tools,
)
result = await agent.ainvoke({
"messages": "List recent Pirsch Analytics transactions"
})
print(result["messages"][-1].content) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Pirsch Analytics. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Pirsch Analytics MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Pirsch Analytics MCP today
We host it, we monitor it, we maintain it. You just paste one token.