vent-mcp 0.2.0

STDIO MCP server that lets agents vent to configured channels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<#
Builds the Windows release binary for the requested Rust target.

This is the Windows companion to the shell build script. It keeps CI invocation
simple by requiring only the target triple and delegating the actual build to
Cargo with release optimization enabled.
#>
param(
  [Parameter(Mandatory = $true)][string]$Target
)

$ErrorActionPreference = 'Stop'

cargo build --release --target $Target