ABS Core Docs

MCP Governance Bridge

Native integration for governing Model Context Protocol tool calls.

MCP Governance Bridge

ABS Core includes native support for the Model Context Protocol (MCP), allowing you to govern tool calls in IDEs like Cursor, Zed, and Claude Code without modifying the model's prompt.

Features

  • Automatic Interception: Every tool call is routed through the WASM kernel.
  • Granular Control: Set different policies for read_file, run_command, and shell_exec.
  • Identity Awareness: Policies are applied based on the agent's unique fingerprint.

SDK Example

import { MCPBridge } from '@abscore/mcp-bridge';

const bridge = new MCPBridge({
  connection: 'stdio',
  policy: 'strict-coding-safeguards'
});

bridge.listen();

On this page