impact-preview
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@impact-previewPreview the impact of changing the database URL in config.yaml to production"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π Agent Polis
Impact Preview for AI Agents - "Terraform plan" for autonomous AI actions
See exactly what will change before any AI agent action executes.
Agent Polis intercepts proposed actions from autonomous AI agents, analyzes their impact, shows you a diff preview of what will change, and only executes after human approval. Stop worrying about your AI agent deleting your production database.
π― The Problem
Autonomous AI agents are powerful but dangerous. Recent incidents:
Replit Agent deleted a production database, then lied about it
Cursor YOLO mode deleted an entire system including itself
Claude Code learned to bypass safety restrictions via shell scripts
Developers want to use AI agents but don't trust them. Current solutions show what agents want to do, not what will happen. There's no "terraform plan" equivalent for AI agent actions.
Related MCP server: RecourseOS
π The Solution
AI Agent proposes action β Agent Polis analyzes impact β Human reviews diff β Approve/Reject β Execute# Example: Agent wants to write to config.yaml
- database_url: postgresql://localhost:5432/dev
+ database_url: postgresql://prod-server:5432/production
! WARNING: Production database URL detected (CRITICAL RISK)β¨ Features
Impact Preview: See file diffs, risk assessment, and warnings before execution
Approval Workflow: Approve, reject, or modify proposed actions
Risk Assessment: Automatic detection of high-risk operations (production data, system files, etc.)
Audit Trail: Event-sourced log of every proposed and executed action
SDK Integration: Easy
@require_approvaldecorator for your agent codeDashboard: Streamlit UI for reviewing and approving actions
π Quick Start (2 minutes)
The fastest way to try Agent Polis is the MCP server with Claude Desktop or Cursor.
1. Install & Run
pip install impact-preview
impact-preview-mcp2. Configure Claude Desktop
Add to your config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"impact-preview": {
"url": "http://localhost:8000/mcp"
}
}
}3. Try It
Ask Claude to edit a file - it now has these tools:
Tool | What it does |
| Shows diff before any edit |
| Shows what will be lost |
| Flags dangerous commands |
| Quick risk check for any path |
Example prompt:
"Preview what would happen if you changed the database URL in config.yaml to point to production"
Claude will show you the diff and risk assessment before making changes.
π¦ Full Server Installation
For the complete approval workflow with dashboard and API:
# Using Docker (recommended)
docker-compose up -d
# Or locally
pip install impact-preview
impact-previewRegister an Agent
curl -X POST http://localhost:8000/api/v1/agents/register \
-H "Content-Type: application/json" \
-d '{"name": "my-agent", "description": "My AI coding assistant"}'Submit Action β Review β Approve
# Submit
curl -X POST http://localhost:8000/api/v1/actions \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action_type": "file_write", "target": "/app/config.yaml", "description": "Update DB URL", "payload": {"content": "db: prod"}}'
# Preview
curl http://localhost:8000/api/v1/actions/ACTION_ID/preview -H "X-API-Key: YOUR_API_KEY"
# Approve (or reject)
curl -X POST http://localhost:8000/api/v1/actions/ACTION_ID/approve -H "X-API-Key: YOUR_API_KEY"Audit Trail (Events)
You can retrieve the complete audit trail for an action:
curl http://localhost:8000/api/v1/actions/ACTION_ID/events -H "X-API-Key: YOUR_API_KEY"ActionPreviewGenerated event payload includes machine-readable governance context:
data.governance.policy.decision/data.governance.policy.matched_rule_iddata.governance.scanner.reason_ids/data.governance.scanner.max_severity
π SDK Integration
Wrap your agent's dangerous operations:
from agent_polis import AgentPolisClient
client = AgentPolisClient(api_url="http://localhost:8000", api_key="YOUR_KEY")
# Decorator approach - blocks until human approves
@client.require_approval(action_type="file_write")
def write_config(path: str, content: str):
with open(path, 'w') as f:
f.write(content)
# This will: submit β wait for approval β execute only if approved
write_config("/etc/myapp/config.yaml", "new content")π₯οΈ Dashboard
Launch the Streamlit dashboard to review pending actions:
pip install impact-preview[ui]
streamlit run src/agent_polis/ui/app.pyπ API Reference
Actions API
Endpoint | Method | Description |
| POST | Submit action for approval |
| GET | List your actions |
| GET | List pending approvals |
| GET | Get action details |
| GET | Get impact preview |
| GET | Get diff output |
| POST | Approve action |
| POST | Reject action |
| POST | Execute approved action |
Action Types
file_write- Write content to a filefile_create- Create a new filefile_delete- Delete a filefile_move- Move/rename a filedb_query- Execute a database query (read)db_execute- Execute a database statement (write)api_call- Make an HTTP requestshell_command- Run a shell commandcustom- Custom action type
Risk Levels
Low: Read operations, safe changes
Medium: Write operations to non-critical files
High: Delete operations, system files
Critical: Production data, irreversible changes
π§ Configuration
# .env
SECRET_KEY=your-secret-key
DATABASE_URL=postgresql+asyncpg://user:pass@host:5432/agent_polis
REDIS_URL=redis://localhost:6379/0
# Optional
FREE_TIER_ACTIONS_PER_MONTH=100
LOG_LEVEL=INFOπΊοΈ Roadmap
Version | Focus | Status |
v0.2.0 | File operation preview | Current |
v0.3.0 | Database operation preview | Planned |
v0.4.0 | API call preview | Planned |
v0.5.0 | IDE integrations (Cursor, VS Code) | Planned |
v1.0.0 | Production ready | Planned |
π€ Contributing
git clone https://github.com/agent-polis/impact-preview.git
cd impact-preview
pip install -e .[dev]
pre-commit install
pytestπ License
MIT License - see LICENSE for details.
Built for developers who want AI agents they can actually trust.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/agent-polis/impact-preview'
If you have feedback or need assistance with the MCP directory API, please join our Discord server