streamable-httpMITupdated 2mo ago
Agent-native AI platform for AI Room, Media API, and Coding Plan API.
What can you do with vap e?
VAP AI
Agent-native AI platform for AI Room, Media API, and Coding Plan API.
Website | Developer Hub | AI Room | Dashboard | Status
Products
AI Room
Conversational creative workspace where custom-trained AI agents use session context to create images, video, voice, and music.
- Product URL: https://vapagent.com/new
- Plans: Lite, Pro, and Max monthly Room plans
Media API
Unified generation API for image, video, and music workflows. Current public model surfaces include Pimo AI-Video, Aura Image Turbo, and Pira V5.5.
- Developer Hub: https://vapagent.com/developer/
- API base URL:
https://api.vapagent.com/api/v1 - Create generation:
POST /api/v1/generations - Create operation:
POST /api/v1/operations - Authentication: product-scoped VAP Media API key
- MCP endpoint:
https://api.vapagent.com/mcp
Coding Plan API
OpenAI-compatible API for coding agents, IDEs, editors, and automation workflows. Powered by Nemesis Deep Coder with model ID vap-code.
- Developer Hub: https://vapagent.com/developer/
- Model page: https://vapagent.com/models/nemesis-deep-coder.html
- Harness guide: https://vapagent.com/integrations/coding-harnesses.html
- API base URL:
https://api.vapagent.com/v1 - Model ID:
vap-code - Responses endpoint:
POST /v1/responses - Chat Completions endpoint:
POST /v1/chat/completions - Authentication: product-scoped VAP Coding Plan API key
Start From The Product Surface
Use these entry points for new integrations:
| Need | Link |
|---|---|
| Use AI Room | https://vapagent.com/new |
| Generate a Media API key | https://vapagent.com/developer/?key=media#keys |
| Generate a Coding Plan API key | https://vapagent.com/developer/?key=code#keys |
| View Coding Plan API plans | https://vapagent.com/new-dashboard/?billing=code#plans |
| Read Developer Hub | https://vapagent.com/developer/ |
| See Nemesis Deep Coder | https://vapagent.com/models/nemesis-deep-coder.html |
Media API Via MCP
This repository remains the public GitHub and MCP discovery surface for VAP Media API integrations. MCP is still supported for Claude Desktop, Claude Code, Cursor-compatible MCP clients, and other agent workflows that call VAP media tools.
Claude Desktop example:
{
"mcpServers": {
"vap": {
"url": "https://api.vapagent.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_MEDIA_API_KEY"
}
}
}
}
For clients that do not support headers directly, use the local proxy in mcp/vap_mcp_proxy.py and set VAP_API_KEY.
API Examples
Media API
curl -X POST https://api.vapagent.com/api/v1/generations \
-H "Authorization: Bearer YOUR_MEDIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"kind":"image","prompt":"a neon city at night"}'
Coding Plan API
curl -X POST https://api.vapagent.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_CODING_PLAN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"vap-code","messages":[{"role":"user","content":"Review this patch."}]}'
Current Product Contracts
Use these current public contracts from Developer Hub:
- Media API:
https://api.vapagent.com/api/v1 - Media generation:
POST /api/v1/generations - Media operations:
POST /api/v1/operations - MCP:
https://api.vapagent.com/mcp - Coding Plan API:
https://api.vapagent.com/v1
Discovery Files
server.json: MCP Registry server metadatamcp.json: MCP package metadataglama.json: Glama MCP listing metadatamcp/tools.json: MCP tool schema metadatamcp/vap_mcp_proxy.py: local stdio/http proxy for MCP clients
Links
- Website: https://vapagent.com/
- Developer Hub: https://vapagent.com/developer/
- AI Room: https://vapagent.com/new
- MCP guide: https://vapagent.com/mcp.html
- Webhooks: https://vapagent.com/webhooks.html
- Status: https://vapagent.com/status.html
- Support: support@vapagent.com
License
MIT License. See LICENSE.
Install
Add vap e to your client. Pick the one you use.
claude mcp add --transport http vap-e https://api.vapagent.com/mcpcodex mcp add vap-e --url https://api.vapagent.com/mcp{
"mcpServers": {
"vap-e": {
"url": "https://api.vapagent.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"vap-e": {
"type": "http",
"url": "https://api.vapagent.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"vap-e": {
"url": "https://api.vapagent.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"vap-e": {
"serverUrl": "https://api.vapagent.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance22/25
- Trust16/20
- Capability0/15
- Install experience12/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 66 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
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.14.1Latest | Feb 9, 2026 |
| 1.14.0 | Jan 25, 2026 |
| 1.13.1 | Jan 20, 2026 |
| 1.13.0 | Jan 19, 2026 |
| 1.12.4 | Jan 17, 2026 |
| 1.12.3 | Jan 17, 2026 |
| 1.6.0 | Jan 8, 2026 |
| 1.5.1 | Jan 8, 2026 |
| 1.5.0 | Jan 8, 2026 |