← waveassist.ai

INDIVIDUAL MCP TOOL

waveassist_set_key

Store an integration key/secret in the agent's key-value store, in BOTH the default and test environments (so test runs and live runs both see it).

waveassist.ainone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.waveassist.ai/mcp

No auth detected

Connect to this endpoint to inspect the live schema for waveassist_set_key and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.

Parent server

waveassist.ai

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.waveassist]
url = "https://mcp.waveassist.ai/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "waveassist": {
      "type": "http",
      "url": "https://mcp.waveassist.ai/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: waveassist
Remote MCP URL: https://mcp.waveassist.ai/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "waveassist": {
      "url": "https://mcp.waveassist.ai/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "waveassist": {
      "type": "http",
      "url": "https://mcp.waveassist.ai/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "waveassist",
  "transport": "streamable-http",
  "url": "https://mcp.waveassist.ai/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • waveassist_build_guide — Return the WaveAssist agent-authoring guide (the build brain).
  • waveassist_login — Authenticate to WaveAssist.
  • waveassist_status — Show login status (configured UID + API base) and the agents this machine has built with WaveAgent (from the local registry).
  • waveassist_list_projects — List the WaveAssist projects in your account (live, server-side) — and double as a connectivity check.
  • waveassist_deploy_agent — Create or update a WaveAssist agent and install its nodes — UNARMED (the schedule does NOT fire yet).
  • waveassist_test_agent — Dry-run the agent on WaveAssist infra against its TEST environment.
  • waveassist_run_agent — Run the LIVE agent once, right now, against its DEFAULT environment.
  • waveassist_run_logs — Fetch recent run statuses (and node-level tracebacks for a specific dag_run_id) to debug a failing agent.