Poke.com Developer SDK
Project description
poke
The official Poke Python SDK for sending messages to your Poke agent, creating webhook triggers, and firing webhooks.
Built by Interaction Company in California.
Installation
pip install poke
Zero dependencies. Works with Python 3.8+.
Quick start
from poke import Poke
client = Poke(api_key="pk_...")
# Send a message to your agent
client.send_message("Summarize my unread emails")
# Create a webhook trigger
webhook = client.create_webhook(
condition="When a deploy fails",
action="Send me a summary of the error",
)
# Fire the webhook with data
client.send_webhook(
webhook_url=webhook["webhookUrl"],
webhook_token=webhook["webhookToken"],
data={"event": "deploy_failed", "repo": "my-app", "error": "OOM killed"},
)
Authentication
The SDK resolves credentials in this order:
api_keypassed to the constructorPOKE_API_KEYenvironment variable- Credentials from
poke login(~/.config/poke/credentials.json)
# Option 1: Pass directly
client = Poke(api_key="pk_...")
# Option 2: Set POKE_API_KEY in your environment
client = Poke()
# Option 3: Run `poke login` first, then
client = Poke()
Get your API key at poke.com/kitchen/api-keys.
Methods
client.send_message(message)
Send a text message to your Poke agent.
result = client.send_message("What meetings do I have today?")
# {"success": True, "message": "..."}
client.create_webhook(condition, action)
Create a webhook trigger. Returns a webhookUrl and webhookToken that you use with send_webhook.
webhook = client.create_webhook(
condition="When a new user signs up",
action="Send me a welcome summary in Slack",
)
# {
# "triggerId": "...",
# "webhookUrl": "https://poke.com/api/v1/inbound/webhook",
# "webhookToken": "eyJhbG..."
# }
client.send_webhook(webhook_url, webhook_token, data)
Fire a webhook trigger with data. Use the webhook_url and webhook_token returned by create_webhook.
client.send_webhook(
webhook_url=webhook["webhookUrl"],
webhook_token=webhook["webhookToken"],
data={"event": "new_signup", "email": "user@example.com", "plan": "pro"},
)
# {"success": True}
Configuration
| Option | Environment Variable | Default |
|---|---|---|
api_key |
POKE_API_KEY |
— |
base_url |
POKE_API |
https://poke.com/api/v1 |
Error handling
from poke import Poke, AuthenticationError, ForbiddenError, RateLimitError, PokeError
client = Poke()
try:
client.send_message("hello")
except AuthenticationError:
print("Bad API key")
except ForbiddenError:
print("Key lacks required scopes")
except RateLimitError:
print("Slow down")
except PokeError as e:
print(f"API error ({e.status}): {e}")
MCP Callback Sugar
For Python MCP server developers: poke.mcp lets long-running tools send asynchronous progress updates back to Poke. Requires Python 3.10+.
pip install poke fastmcp
from poke.mcp import with_callbacks, PokeCallbackMiddleware
from fastmcp import FastMCP
mcp = FastMCP("my-server")
@mcp.tool()
@with_callbacks
async def deploy_and_notify(repo: str, branch: str):
"""Deploy a repo and send progress updates to Poke."""
yield f"Starting deployment of {repo}@{branch}..."
await run_deploy(repo, branch)
yield f"Deploy complete. Running tests..."
await run_tests(repo)
yield f"All done!" # last yield → sent with hasMore=False
# ASGI middleware extracts X-Poke-Callback-Token/Url headers
app = PokeCallbackMiddleware(mcp.http_app())
The first yield is returned immediately as the MCP tool result. Subsequent yields are POSTed to the Poke callback URL in the background. The last yield is sent with hasMore=False to signal completion.
If the request doesn't include callback headers, remaining yields are silently discarded — your tool still works as a normal single-response tool.
Non-ASGI servers
For Flask, Django, or other frameworks, use extract_callback_context and set_callback_context manually:
from poke.mcp import extract_callback_context, set_callback_context, reset_callback_context
ctx = extract_callback_context(dict(request.headers))
if ctx:
token = set_callback_context(ctx)
try:
result = await my_tool(args)
finally:
reset_callback_context(token)
Configuration
Credentials are stored in ~/.config/poke/credentials.json (respects $XDG_CONFIG_HOME).
| Environment Variable | Description | Default |
|---|---|---|
POKE_API_KEY |
API key for SDK usage | — |
POKE_API |
API base URL | https://poke.com/api/v1 |
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 poke-0.2.1.tar.gz.
File metadata
- Download URL: poke-0.2.1.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
615422eef7a50066ffaf553ba8ff3148f3dc4557e96148f95f972d6b39dfeafb
|
|
| MD5 |
b428f904949593912f3fd57bac7ab353
|
|
| BLAKE2b-256 |
b7114ba02f788ed2362a81a72dd086b8de55395527905e70d97a2cf5302a13fc
|
File details
Details for the file poke-0.2.1-py3-none-any.whl.
File metadata
- Download URL: poke-0.2.1-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdb8322fa29afb1406fe6756507863577503cb5fe4e1800af608ca49253ab6d4
|
|
| MD5 |
066330534caf3297fb72abc7130b362a
|
|
| BLAKE2b-256 |
5eddadd8e928c7fd2cd05c37db6c3e71eead9a8dc97dcefa1e001a4c00ba8e93
|