Connic
Back to BlogChangelog

What We Shipped in November 2025

MCP connector exposing agents as tools, Postgres LISTEN/NOTIFY, S3 file uploads, SQS message queues, connector logs, and unified connector UI.

December 2, 20255 min read

November was connector month with four new integrations covering databases, cloud storage, message queues, and the Model Context Protocol.

MCP Connector

Expose your Connic agents as MCP tools that any MCP client can call. Each linked agent becomes a tool with its name and description available via the standard MCP protocol.

The connector supports two modes:

  • Sync mode: MCP client waits for the agent to complete (up to 5 minutes)
  • Inbound mode: Fire-and-forget for longer-running tasks

Connect Claude Desktop, Cursor, or any MCP-compatible client to your Connic agents. Authentication is handled via a generated secret token.

Postgres Connector

Trigger agents from database events using PostgreSQL's LISTEN/NOTIFY mechanism. Configure a channel name, and any NOTIFY on that channel triggers your linked agents.

PostgreSQL trigger example
CREATE OR REPLACE FUNCTION notify_new_order()
RETURNS TRIGGER AS $$
BEGIN
  PERFORM pg_notify(
    'new_orders',
    json_build_object(
      'order_id', NEW.id,
      'customer_id', NEW.customer_id,
      'total', NEW.total
    )::text
  );
  RETURN NEW;
END;
$$ LANGUAGE plpgsql;

The connector maintains a persistent connection and automatically reconnects if dropped.

S3 Connector

Trigger agents when files are uploaded to S3. Configure via SNS or EventBridge, and your agent receives file metadata:

Agent payload
{
  "bucket": "my-bucket",
  "key": "uploads/invoice-2024-001.pdf",
  "size": 245789,
  "event_name": "ObjectCreated:Put",
  "content": { ... }  // Optional: file content
}

Use prefix and suffix filters to only process specific paths or file types. Enable include_content to download and pass file contents directly to your agent (up to 10MB).

SQS Connector

Consume messages from AWS SQS queues. The connector handles visibility timeouts, automatic message deletion after successful processing, and dead letter queue routing for failed messages.

Connector Logs

Every connector now maintains a log stream accessible from the connector detail page. See:

  • Connection events (connected, disconnected, reconnecting)
  • Incoming messages with timestamps and payload previews
  • Dispatch events showing which agents were triggered
  • Errors with details for debugging

Unified Connector Management

All connectors now share a consistent create/edit UI. Configuration fields adapt to the connector type, with inline validation and clearer error messages.

More from the Blog

Changelog

What We Shipped in April 2026

Human-in-the-loop approvals, Bridge for custom tools and private services, tool hooks, discoverable tools, AI dashboard builder, custom OpenAI-compatible providers, and live logs from your own code.

May 3, 20267 min read
Industry Insights

The EU AI Act Is Here. Your AI Agents Need to Comply.

The EU AI Act is the world's first comprehensive AI regulation, and it applies to your AI agents today. Here's what it requires, what the penalties look like, and how Connic makes compliance the default rather than an afterthought.

April 13, 202611 min read
Product Spotlight

Agent Approvals: Human-in-the-Loop for Production AI

AI agents that delete data, process refunds, or call external APIs need a safety net. Connic Approvals pause agent execution at critical moments, wait for human review, and resume automatically. You get control without killing autonomy.

April 5, 202610 min read
Product Spotlight

Agent Guardrails: Real-Time Safety for Your AI Agents

Connic Guardrails intercept agent inputs and outputs in real time to block prompt injection, redact PII, and enforce topic restrictions.

March 3, 20269 min read
Changelog

What We Shipped in December 2025

Stripe connector with webhook signature verification, Email connector with IMAP polling and attachment support, plus dashboard UI improvements.

January 2, 20264 min read
Tutorial

Hidden Costs of Self-Hosting AI Agents

"We'll just deploy it on Kubernetes" - famous last words. The true cost of self-hosting AI agents vs. a managed platform.

December 18, 20257 min read