PostHog Agent Toolkit for LangChain and other AI frameworks
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
posthog-agent-toolkit
⚠️ DEPRECATION NOTICE ⚠️
This package has been deprecated and will no longer receive updates.
We recommend using the PostHog MCP server directly with your preferred MCP client instead. See the PostHog MCP documentation for integration options.
Tools to give agents access to your PostHog data, manage feature flags, create insights, and more.
This is a Python wrapper around the PostHog MCP (Model Context Protocol) server, providing easy integration with AI frameworks like LangChain.
Installation
pip install posthog-agent-toolkit
Quick Start
The toolkit provides integrations for popular AI frameworks:
Using with LangChain
from langchain_openai import ChatOpenAI
from langchain.agents import AgentExecutor, create_tool_calling_agent
from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder
from posthog_agent_toolkit.integrations.langchain.toolkit import PostHogAgentToolkit
# Initialize the PostHog toolkit
toolkit = PostHogAgentToolkit(
personal_api_key="your_posthog_personal_api_key",
url="https://mcp.posthog.com/mcp" # or your own, if you are self hosting the MCP server
)
# Get the tools
tools = await toolkit.get_tools()
# Initialize the LLM
llm = ChatOpenAI(model="gpt-5-mini")
# Create a prompt
prompt = ChatPromptTemplate.from_messages([
("system", "You are a data analyst with access to PostHog analytics"),
("human", "{input}"),
MessagesPlaceholder("agent_scratchpad"),
])
# Create and run the agent
agent = create_tool_calling_agent(llm=llm, tools=tools, prompt=prompt)
executor = AgentExecutor(agent=agent, tools=tools)
result = await executor.ainvoke({
"input": "Analyze our product usage by getting the top 5 most interesting insights and summarising the data from them."
})
Available Tools
For a list of all available tools, please see the docs.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file posthog_agent_toolkit-0.1.3.tar.gz.
File metadata
- Download URL: posthog_agent_toolkit-0.1.3.tar.gz
- Upload date:
- Size: 68.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd308e480ea1d2def474ba613f91ea6edc7359741bc7d1f07a5207af529a0125
|
|
| MD5 |
d93b7291901f74c08f47836f1a8911e2
|
|
| BLAKE2b-256 |
2204cf99abea74d60bf09dbd89131bc5451bfa17e31af0893bffd3e55585724e
|
File details
Details for the file posthog_agent_toolkit-0.1.3-py3-none-any.whl.
File metadata
- Download URL: posthog_agent_toolkit-0.1.3-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbf74bab9a26d3d8159356e51c2066b99f23a81932fd9f2b4db8c51cf1bfa822
|
|
| MD5 |
1f5b33528871eebe1f9791923cb75bb3
|
|
| BLAKE2b-256 |
0c6d62b435093f475032a5f3aff71118a788788e5cc82b79f4bd6d1088318d9b
|