npm @vaaya/mcpstreamable-httpMITupdated 12d ago
Vaaya is the agent payment system: one MCP server that lets any agent call paid APIs pay-per-call, with no API keys. Instead of wiring up a dozen vendor keys, your agent asks Vaaya's conversational consult tool for anything it can't do, gets back the exact call to run, and executes it with use â billed on success only (x402 USDC on Base, Stripe MPP, or Tempo; the payment is the auth). Failed calls are never charged.
Was kannst du mit Vaaya machen?
Vaaya MCP â superpowers for any agent
Vaaya is the agent payment system: one MCP server that
lets any agent call paid APIs pay-per-call, with no API keys. Instead of
wiring up a dozen vendor keys, your agent asks Vaaya's conversational consult
tool for anything it can't do, gets back the exact call to run, and executes it
with use â billed on success only (x402 USDC on Base, Stripe MPP, or Tempo;
the payment is the auth). Failed calls are never charged.
What your agent can do through Vaaya
| Capability | What you get |
|---|---|
| đ¨ Media generation | Images & video with top models â Nano Banana Pro 2, GPT Image 2, Seedream v4.5, Kling v3, Seedance 2.0 â plus TTS voices & music |
| đŹ Product demo videos | Record a raw, silent screen capture of your live product; Vaaya auto-authors narration + zoom/cut plan and renders a finished narrated demo |
| đźď¸ Website imagery | Derive a site's brand and generate an on-brand image set straight into your repo |
| đ Web search | Exa & Parallel: query search, URL contents, async deep research tasks |
| đˇď¸ Web scraping | Firecrawl scrape / crawl / map / search / extract, persisted to files |
| đ Deep research | Multi-hop, source-verified, cited research reports |
| đ Market & competitive research | Company reports (people, hiring, ads, reviews, SEO/LLM visibility), product & feature catalogs with review sentiment, UX research with interactive product maps, "best X for my data" bake-offs, persistent competitive knowledge repos |
| đŻ GTM & sales | Find ICP-matched leads with verified contacts, enrich contacts, track buying signals (funding/hiring/launch/press), 24Ă7 LinkedIn discovery, segment-based outbound email â every draft held for human approval |
| â° Monitoring workers | Scheduled watches (30 minâweekly) over competitor pricing, deals, reviews, job postings, news â only new/changed findings surface |
| đĽď¸ Compute sandboxes | Per-second-billed code execution (Modal) for benchmarks, untrusted code, GPU inference, data jobs |
| đ Browser automation | Browserbase sessions to click, type, log in, fill forms |
| đ§ Email | AgentMail inboxes your agent owns â send and receive replies |
| đ§ Memory | Persistent cross-session memory via mem0, Zep, or Letta |
Install
One command (recommended)
npx @vaaya/mcp install
(npx vaaya-cli install runs the same installer.)
Sets up the Vaaya MCP server for every agent it detects on your machine â Claude Code, Claude Desktop, Cursor, Codex â plus the agent skill. Idempotent: re-run any time to update. Then restart your agent; the first Vaaya call opens a short browser approval (sign-up happens right there).
Remote (Streamable HTTP + OAuth)
{ "mcpServers": { "vaaya": { "url": "https://vaaya.ai/mcp" } } }
Claude Code:
claude mcp add --transport http vaaya https://vaaya.ai/mcp
OpenClaw:
openclaw mcp add vaaya --url https://vaaya.ai/mcp --transport streamable-http --auth oauth
openclaw mcp login vaaya
Hermes (~/.hermes/config.yaml):
mcp_servers:
vaaya:
url: "https://vaaya.ai/mcp"
auth: oauth
On first use your client runs the OAuth flow in the browser; approve and you're connected. Revoke anytime at vaaya.ai/connected-apps.
npm stdio shim (for stdio-only clients: opencode, âŚ)
{ "mcpServers": { "vaaya": { "command": "npx", "args": ["-y", "@vaaya/mcp"] } } }
The shim (@vaaya/mcp) opens the
OAuth flow on first call, stores a refresh token locally (0o600), and proxies
the live tool list from the backend â new server-side tools appear without a
shim upgrade. It also ships an agent skill so your client routes every
capability gap through consult automatically.
Agent skill (works across 70+ agents)
npx skills add vaaya-ai/vaaya-mcp
Installs the vaaya skill for Claude Code, Codex,
Cursor, Gemini CLI, Copilot, and any other client that supports the open
Agent Skills standard. The skill bootstraps the
Vaaya MCP server if it's missing and keeps the install updated.
As a plugin
- Claude Code:
/plugin marketplace add vaaya-ai/vaaya-mcpthen/plugin install vaaya@vaayaâ bundles the remote MCP server, thevaayaskill, and the SessionStart reminder hook - Codex:
codex plugin marketplace add vaaya-ai/vaaya-mcpthen installvaayafrom the Plugins panel - Gemini CLI:
gemini extensions install https://github.com/vaaya-ai/vaaya-mcp
How it works
consult(intent)â describe any goal in plain English ("generate a hero video", "find 50 heads of RevOps with verified emails", "watch my competitor's pricing page"). It converses, clarifies, and returns the exact call(s) to run.use(service, action, params, max_cost_cents)â execute the call. Billed on success;max_cost_centsis a hard spend ceiling. Long jobs return{ async: true, job_id }â poll withresult(job_id).session/closeâ per-second-billed code sandbox sessions.
Plus a full GTM suite (gtm_leads_find, gtm_lead_enrich, gtm_signal_create,
gtm_segments, gtm_message, gtm_replies, âŚ) and scheduled monitoring
workers (worker_create, worker_findings, âŚ) â the tool list is proxied live from the backend.
Example prompts
- "Generate a hero video for our landing page in 16:9."
- "Record my product and turn it into a narrated demo video."
- "Find 50 heads of RevOps at Series-B SaaS companies with verified emails."
- "Watch my competitor's pricing page and tell me when it changes."
- "Do deep research on the agentic payments market with cited sources."
- "Scrape these 200 product pages into structured JSON."
- "Run this benchmark in a GPU sandbox."
CLI
The vaaya-cli CLI manages everything from
the terminal:
npx vaaya-cli install # set up the MCP server for every detected agent
npx vaaya-cli status # connection state + live tool count
npx vaaya-cli consult "..." # ask Vaaya how it would do something (returns the plan)
npx vaaya-cli reauthorize # re-run the browser auth flow
npx vaaya-cli logout # disconnect & delete local credentials
Security & billing
- Your agent never sees vendor API keys or upstream URLs â Vaaya proxies every call server-side.
- OAuth 2.1 (PKCE, dynamic client registration); anonymous
tools/listfor discovery; revocable grants. - Pay-per-call on x402 (USDC on Base), Stripe MPP/SPT, or Tempo. Failed calls
are never charged. Every call carries a
max_cost_centsguard.
Links
- Website & docs: https://vaaya.ai
- Agent-readable docs (llms.txt): https://vaaya.ai/llms.txt ¡ full tool reference: https://vaaya.ai/llms-full.txt
- npm: https://www.npmjs.com/package/@vaaya/mcp ¡ https://www.npmjs.com/package/vaaya-cli
- Support: support@vaaya.ai
Installation
Vaaya zu deinem Client hinzufßgen. Wähl den, den du nutzt.
{
"servers": {
"mcp": {
"type": "http",
"url": "https://vaaya.ai/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @vaaya/mcpcodex mcp add mcp -- npx -y @vaaya/mcpamp mcp add mcp -- npx -y @vaaya/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@vaaya/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@vaaya/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@vaaya/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@vaaya/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@vaaya/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@vaaya/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@vaaya/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @vaaya/mcpRun `goose configure`, choose **Add Extension â Command-line Extension**, and paste this command.
Score
39 / 100
Unvollständig
- Dokumentation25/25
- Pflege25/25
- Vertrauen16/20
- Funktionsumfang0/15
- Installation15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 5 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint â no local install
Versionsverlauf
| Versionen | VerĂśffentlicht |
|---|---|
| 0.3.3Aktuell | 7. Juli 2026 |
| 0.3.2 | 6. Juli 2026 |
| 0.3.1 | 4. Juli 2026 |
| 0.3.0 | 4. Juli 2026 |
| 0.2.3 | 4. Juli 2026 |
| 0.2.2 | 4. Juli 2026 |
| 0.2.1 | 3. Juli 2026 |