AgentStack
MCP verified MIT Self-run

Faf Radio Rust

mcp-wolfe-jam-faf-radio-rust · by Wolfe-Jam

Radio Protocol client for Rust — AI context broadcasting via WebSocket frequencies. crates.io: faf-radio-rust

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add mcp-wolfe-jam-faf-radio-rust

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-wolfe-jam-faf-radio-rust)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Faf Radio Rust? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

faf-radio-rust

Radio Protocol client for Rust. Broadcast AI context once, every tool receives.

Client SDK for MCPaaS — persistent AI context infrastructure.

Install

[dependencies]
faf-radio-rust = "0.2"
tokio = { version = "1", features = ["full"] }
serde_json = "1.0"

Or via the meta-crate:

[dependencies]
faf = { version = "0.3", features = ["radio"] }

Quick Start

use faf_radio_rust::{RadioClient, RadioConfig};

#[tokio::main]
async fn main() -> Result> {
    let mut radio = RadioClient::new(RadioConfig::grok());

    radio.connect().await?;
    radio.tune(vec!["91.0".to_string()]).await?;

    // Broadcast an event on the frequency
    radio.broadcast("91.0", serde_json::json!({
        "type": "fafb",
        "project": "my-project",
        "size": 220,
    })).await?;

    // Context arrives from any AI, any session
    tokio::time::sleep(tokio::time::Duration::from_secs(30)).await;

    radio.disconnect().await?;
    Ok(())
}

How It Works

MCPaaS uses the Radio Protocol — broadcast once, every AI receives.

You → Broadcast to 91.0 FM (send once)
  Claude  ← tuned in
  Grok    ← tuned in
  Gemini  ← tuned in
= 1x cost, instant, zero drift

Presets

RadioConfig::grok() connects to the FAF beacon with zero configuration:

// Before (v0.1):
let config = RadioConfig::new("wss://faf-beacon.wolfejam2020.workers.dev/radio");

// After (v0.2):
let config = RadioConfig::grok();

Broadcasting

Clients can now send events on frequencies (v0.2.0):

// Broadcast FAFb metadata
client.broadcast("91.0", serde_json::json!({
    "type": "fafb",
    "project": "faf-cli",
    "yaml_bytes": 4188,
    "fafb_bytes": 220,
})).await?;

Multi-AI Example

use faf_radio_rust::{RadioClient, RadioConfig};

#[tokio::main]
async fn main() -> Result> {
    let mut claude = RadioClient::new(RadioConfig::grok());
    let mut grok   = RadioClient::new(RadioConfig::grok());
    let mut gemini = RadioClient::new(RadioConfig::grok());

    claude.connect().await?;
    grok.connect().await?;
    gemini.connect().await?;

    // All three tune to the same frequency
    for radio in [&mut claude, &mut grok, &mut gemini] {
        radio.tune(vec!["91.0".to_string()]).await?;
    }

    // All three AIs now share the same context, in real time
    Ok(())
}

API

| Method | Description | |--------|-------------| | RadioConfig::grok() | Preset config for Grok inference frequency | | RadioConfig::new(url) | Custom server URL | | connect().await | Connect to beacon | | tune(frequencies).await | Subscribe to frequencies | | untune(frequencies).await | Unsubscribe | | broadcast(freq, event).await | Send event on a frequency | | disconnect().await | Disconnect | | state().await | Get connection state | | validate_frequencies(&freqs) | Validate range (40.0-108.0 FM) |

Features

  • Preset configs (RadioConfig::grok()) — zero-config setup
  • Client broadcasting — send events on frequencies
  • Auto-reconnection with exponential backoff
  • Heartbeat (ping/pong every 30s)
  • Frequency validation (40.0-108.0 FM)
  • Type-safe protocol messages (serde)
  • Tokio async/await

Testing

50/50 passing — WJTTC Championship-Grade:

| Tier | Tests | What | |------|-------|------| | T1 BRAKES | 14 | Security — injection, boundary, validation | | T2 ENGINE | 19 | Core — state, config, serialization, broadcast | | T3 AERO | 12 | Edge cases — error display, traits | | Unit | 5 | Inline — grok preset, broadcast validation |

cargo test

Ecosystem

| Crate | What | |-------|------| | faf | Meta-crate — cargo add faf --features radio | | faf-rust-sdk | Parse, validate, compile .faf files | | faf-radio-rust | Stream context live via Radio Protocol |

Also available in Bun/TypeScript and Zig (coming soon).

Previously

This crate was published as mcpaas. The platform lives on at mcpaas.live — the radio client now has its own name.

If faf-radio-rust has been useful, consider starring the repo — it helps others find it.

License

MIT


Built by Wolfe James | Platform: MCPaaS | Format: FAF

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.