Product updates

Changelog

Stay up to date with new features, developer tools, and operational guardrails added to Viksa.

v0.3.0

Model Context Protocol (MCP) Gateway Release

Major

Sync your deployed agents and secure enterprise tool catalogs directly to Cursor, VS Code, and custom LLM interfaces. Bring your operational tooling directly to the developer environment.

Hosted MCP Gateway

Viksa now hosts a secure Model Context Protocol gateway that exposes your fleet's @mcp_endpoints via a simple local proxy bridge. Changes sync automatically in under 60 seconds.

cursor-mcp-settings.jsonjson
{
  "mcpServers": {
    "viksa-fleet": {
      "command": "npx",
      "args": ["-y", "@viksa-ai/mcp-bridge", "--key", "vx_sec_98a..."]
    }
  }
}

Unified Agent Credentials

Inject OAuth, database tokens, or SSH keys securely using ViksaAuth. Tools automatically receive scoped credentials only when authorized by their execution context.

Improvements & fixes

  • Fixed Webhook parsing latency for high-payload JSON triggers.
  • Optimized memory usage in Chrona workers during deep trace evaluations.
  • Resolved SAML token signature validation issues for Okta integrations.
v0.2.8

Slack Interactive Volt Approvals

Feature

Put guardrails on production agents. Suspend thread operations and request explicit human approvals for sensitive actions directly in Slack channels.

Slack-Native Approvals

Suspends any agent execution that attempts to run a tool configured with `requires_approval=True`. Volt posts an interactive card showing the proposed code and a simple Approve/Deny action.

tools/system_operations.pypy
@mcp_endpoint(
    description="Restart a critical service deployment",
    requires_approval=True
)
async def restart_deployment(pod_name: str) -> dict:
    # Action executes only after Slack approval is received
    return await k8s_restart(pod_name)

Improvements & fixes

  • Added automatic reconnection handling for Slack event stream timeouts.
  • Improved error messages for failed OAuth authorizations.
  • Fixed trace waterfall rendering bugs on mobile screen widths.
v0.2.5

Private VPC Chrona Workers

Security

Run agent runtimes inside your own network. Data residency, local asset access, and network isolation for secure enterprise environments.

Chrona Worker Daemon

Chrona workers run as a lightweight daemon inside your private cloud. Runtimes call home to the Viksa cloud controller via secure outbound WebSockets—no inbound firewall rules required.

Improvements & fixes

  • Optimized Docker container spin-up times for sandbox script runners.
  • Added automatic backup scheduling options for Vault secrets.
  • Fixed telemetry payload routing to reduce latency in trace-service.