Back to browse
GitHub Repository

Connect all of your agents to everything they need

26 starsPython

Integrations gateway for agents with 2FA for destructive ops (OSS)

by yakkomajuri·Apr 28, 2026·3 points·2 comments

AI Analysis

●●●BangerSolve My ProblemBig Brain

Parameter-level approval prevents agents from changing approved values after you authorize.

Strengths
  • Agents never see API keys—gateway handles authentication with granular per-tool permissions.
  • Approval policies lock exact parameters so authorized refund amounts can't be modified.
  • 50 integrations including Stripe, Gmail, and GitHub with self-host or cloud deployment.
Weaknesses
  • New project with minimal stars means unproven stability and community support.
  • Adding a security gateway introduces latency and complexity to agent workflows.
Category
Target Audience

Developers deploying autonomous agents with production access

Similar To

OpenClaw · Tines · Zapier Interfaces

Post Description

Hey HN!

I've been wanting to use something like OpenClaw for a while but couldn't get myself to give it access to anything important due to all the risks involved. Prompt injection is still a problem (even though some people seem to ignore it) and so are hallucinations and mishaps that cause agents to do things like delete production data [1].

Even harnesses like Claude Code and Codex are subject to this, particularly since we're getting progressively looser about how we run them e.g. Conductor is really popular and runs agents without any sandboxing.

That means we're in a bit of an all-or-nothing situation. There are people who just ignore the risks and connect everything to their agents and reap benefits from it while being subject to more risk, and there are others that just don't connect anything because they are mindful of the potential issues.

I've been quite cautious but have wanted to run more autonomous agents and so I built the component I needed to enable me to do so: AgentPort.

AgentPort is a gateway that connects to any service (e.g. Gmail, GitHub, Stripe, PostHog, Linear) and let's you set granular permissions for what the agent can do automatically, what it needs your approval for, and what it can never do.

For example, you can set `list_customers` and `get_customer` on the Stripe integration to "Auto-approve" but `create_refund` to "Ask for approval". The agent will thus be able to do a lot in the background independently but when it comes to a potentially destructive operation it will be blocked and receive an approval link to send to you. You can then approve or deny the call with those exact parameters e.g. `create_refund(customer_id: 1234, amount: 12)`.

Agents connect via MCP or CLI and have access to all the integrations you connected without ever getting API keys. Kind of like Composio but with granular permissions and open source.

The goal with AgentPort is to specifically address two vulnerabilities that agents are subject to:

1. Destructive operations on downstream services: It can't delete a database unless you explicitly approve 2. Credential exfiltration: Your agent never sees API keys

AgentPort also helps with sensitive data exfiltration, but that is more nuanced and complicated to defend against if the agent has an internet connection [2].

Ultimately, AgentPort was the missing piece for me to start running more autonomous agents that have access to third-party services, and hopefully it can unlock use cases for you too. There's a ton more work needed around securing agents (Claws in particular) and I've both been writing about it [3] and intend to do more in this space, so if you're thinking about similar things let's have a chat.

The repo is https://github.com/yakkomajuri/agentport and you can run it locally with docker compose in a minute or use the one-liner install to deploy a prod instance (domain, TLS, etc.) in just a few mins as well.

[1] "An AI agent deleted our production database. The agent's confession is below" (https://news.ycombinator.com/item?id=47911524) [2] See my post "On agents dropping production databases": https://yakko.dev/blog/on-agents-dropping-production-dbs [3] https://yakko.dev/blog

Similar Projects

AI/ML●●●●Gem

Connector-OSS – Memory integrity kernel for AI agents

Content-addressed memory + Merkle-chained ops = tamper-proof AI agent audit trail.

Zero to OneBig BrainWizardry
umeshlamton
103mo ago
Security●●Solid

Zeroclawed: Secure Agent Gateway

Credential proxy plus Starlark policy engine for AI agent tool calls.

Bold BetShip It
bglusman
832mo ago