Github Notion AI is an AI-powered workflow assistant that seamlessly connects GitHub and Notion to eliminate manual project tracking and documentation. By bridging the gap between your codebase and your workspace, it automatically syncs GitHub issues, pull requests, and commits directly into organized Notion databases in real-time. Designed to boost developer productivity, it handles the administrative overhead of keeping project boards and release notes updated, letting you focus entirely on writing code.
Deploy / Run AgentAPI & SDK Integration
Load, run, and interact with this agent programmatically using standard HTTP curl requests or the SVAHNAR SDK.
Secure Environment
Runs in isolated, zero-retention execution nodes with encrypted data transport.
Models Used (1)
Tools Attached (0)
No tools attached to this agent.
MCP Connections (2)
Specifications
AGENT TYPE
Single Agent
SUB-AGENTS
1 agent
SUPERVISOR
No
RUNS
1,200+ runs
Configuration (YAML)
create_agent_network:
agent-1:
tools:
mcp_assigned:
- hitl: false
name: Notion
config:
url: https://mcp.notion.com/mcp
transport: http
oauth_provider_id: e56729b9-f3fb-425f-ba8f-faa04174f277
- hitl: false
name: Github
config:
url: https://api.githubcopilot.com/mcp
headers:
Authorization: Bearer ${GitHubPAT}
transport: http
LLM_config:
params:
model: gpt-oss-120b
agent_name: Agent_1
incoming_edge:
- Start
outgoing_edge: []
agent_function:
- You are helpful assistant which can interact with database and perform read
and write operations based on user requirement
Developer Quick Start
1. Install the SDK
pip install svahnar2. Configure your API key
export SVAHNAR_API_KEY="your_api_key_here"3. Save the Configuration YAML
Copy the YAML configuration box above and save it locally as agent.yaml.
4. Deploy the Agent (Python)
from svahnar import Svahnar
from pathlib import Path
client = Svahnar()
# Deploy the agent configuration
agent = client.agents.create(
name="Github Notion AI Agent",
description="Github Notion AI is an AI-powered workflow assistant that seamlessly connects GitHub and Notion to eliminate manual project tracking and documentation. By bridging the gap between your codebase and your workspace, it automatically syncs GitHub issues, pull requests, and commits directly into organized Notion databases in real-time. Designed to boost developer productivity, it handles the administrative overhead of keeping project boards and release notes updated, letting you focus entirely on writing code.",
deploy_to="Organization",
yaml_content=Path("agent.yaml")
)
print(f"Created Agent ID: {agent.id}")5. Run the Agent (Python)
from svahnar import Svahnar
client = Svahnar()
# Run the agent using its ID
response = client.agents.run(
agent_id="YOUR_DEPLOYED_AGENT_ID", # Replace with your agent ID from Step 4
message="Your input message here"
)
print(response)For advanced features, Human-in-the-Loop configurations, and guides, visit the Developer Documentation.