ApiVault Remote MCP Server
ApiVault Remote MCP Server
Secure, encrypted API key management for AI coding agents.
Official remote Model Context Protocol (MCP) server for ApiVault.
Quick Start • Tools Reference • Architecture • OAuth 2.1 & Scopes • Error Codes & Troubleshooting • Self-Hosting & Development
Overview
The ApiVault Remote MCP Server allows AI assistants (such as Cursor, Claude Desktop, Windsurf, and Claude Code) to interact with your encrypted secrets in ApiVault safely and auditably.
Instead of pasting raw API keys into chat prompts or committing .env files to git, AI agents can:
Search and inspect available credentials using masked previews (e.g.
sk_live_••••1234).Request raw secret values only when executing code via scoped permissions.
Automatically store newly generated API keys directly into your vault.
Support Zero-Knowledge custom vault keys decrypted in-memory on-the-fly.
🤖 Official AI Agent Skill
If you use AI coding assistants (Cursor, Claude Code, Windsurf, or Google Antigravity), install the official ApiVault Agent Skill into your workspace:
git clone https://github.com/TLB-STATION/apivault-skill.git .agents/skills/apivaultThis equips your AI agents with native runbooks, copy-paste prompt templates, and security guidelines for interacting with ApiVault MCP.
Quick Start
1. Cursor
Open Cursor Settings (Cmd/Ctrl + Shift + J) → MCP → Add New MCP Server, or add to your ~/.cursor/mcp.json:
{
"mcpServers": {
"apivault": {
"url": "https://mcp.apivault.tech/mcp"
}
}
}2. Claude Desktop & Claude.ai
Method 1 (UI Connector): In Claude Desktop / Claude.ai, navigate to Settings → Connectors → Add Custom Connector, enter Name:
ApiVaultand Remote URL:https://mcp.apivault.tech/mcp.Method 2 (Config File): Add to your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"apivault": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.apivault.tech/mcp"]
}
}
}3. Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"apivault": {
"url": "https://mcp.apivault.tech/mcp"
}
}
}4. Claude Code (CLI)
Run in your terminal:
claude mcp add apivault https://mcp.apivault.tech/mcp5. VS Code (Cline / Roo Code / Continue)
In your extension's MCP Settings JSON:
{
"mcpServers": {
"apivault": {
"url": "https://mcp.apivault.tech/mcp",
"transport": "http"
}
}
}First Connection: When your agent first initializes, a browser tab opens to the main ApiVault website (
https://apivault.tech) to authenticate your account and approve the requested scopes.
Tools Reference
The server exposes 6 tools adhering to the Model Context Protocol:
1. list_keys
List stored API keys with masked values (e.g. sk_live_••••1234). Prevents prompt pollution while allowing the agent to discover available services.
Required Scope:
keys:readParameters:
environment(string, optional): Filter by environment (e.g.Production,Staging,Development).service(string, optional): Filter by service name (e.g.Stripe,OpenAI,Resend).
Example Agent Prompt:
"What Stripe credentials do we have stored in Production?"
2. get_key
Retrieve metadata and masked preview for a specific credential by ID.
Required Scope:
keys:readParameters:
id(string, required): The unique ID of the key.
Example Agent Prompt:
"Check the metadata and last updated date for key 'cm123abc'."
3. reveal_key
Decrypt and return the raw, unmasked API key value.
Required Scope:
keys:revealParameters:
id(string, required): The ID of the key to decrypt.vault_key(string, optional): User's custom vault key (required only if the account has Custom Encryption Mode enabled).
Example Agent Prompt:
"I need the raw OpenAI API key so I can run the backend integration tests."
4. add_key
Securely encrypt and store a new API key in the vault.
Required Scope:
keys:writeParameters:
name(string, required): Key identifier (e.g.STRIPE_SECRET_KEY,RESEND_API_KEY).key(string, required): Raw secret value to encrypt.service(string, optional): Service name (e.g.Stripe,OpenAI,AWS).environment(string, optional): Target environment (defaults toProduction).notes(string, optional): Developer documentation or usage notes.vault_key(string, optional): Custom vault key when required.
Example Agent Prompt:
"Store this newly generated Supabase service role key in our Production vault."
5. update_key
Update an existing key's metadata or re-encrypt its secret value.
Required Scope:
keys:writeParameters:
id(string, required): Key ID to update.name,service,environment,notes(string, optional): Metadata updates.key(string, optional): New raw secret value (triggers re-encryption).vault_key(string, optional): Custom vault key when updating secret value.
Example Agent Prompt:
"Update the notes on the Resend API key to 'Rotated on August 18'."
6. delete_key
Permanently remove an API key from the vault.
Required Scope:
keys:writeParameters:
id(string, required): Key ID to delete.
Example Agent Prompt:
"Delete the deprecated staging database credential."
Architecture
The MCP server uses a Stateless Protocol Gateway architecture, separating the public transport layer from the database and cryptographic storage:
+----------------------------------------------------------+
| AI Agent (Cursor / Claude Desktop / Windsurf) |
+----------------------------+-----------------------------+
| Streamable HTTP (JSON-RPC)
v
+----------------------------------------------------------+
| ApiVault MCP Server (mcp.apivault.tech) |
| - RFC 9728 Protected Resource Metadata (PRM) |
| - Streamable HTTP Transport (/mcp) |
| - Zero Database Credentials / Zero Stored Keys |
+----------------------------+-----------------------------+
| Scoped HTTPS REST Gateway (Bearer Token)
v
+----------------------------------------------------------+
| ApiVault Backend (apivault.tech) |
| - OAuth 2.1 Authorization Server (DCR + PKCE S256) |
| - Browser Consent UI (/mcp/authorize) |
| - Cryptographic Key Decryption & MySQL Vault |
+----------------------------------------------------------+Security Properties:
Zero Database Passwords: The public
apivault-mcpservice holds no MySQL credentials and no master encryption keys.Stateless Forwarding: Client requests are verified and forwarded to ApiVault's scoped gateway (
/api/mcp/v1/keys) using standard OAuth Bearer tokens.In-Memory Vault Keys: Custom encryption mode vault keys (
vault_key) are used only in-memory during single-request derivation and are never written to disk or logs.
OAuth 2.1 & Scopes
The MCP server implements standard OAuth 2.1 with Dynamic Client Registration (RFC 7591) and PKCE S256 (RFC 7636):
Scope | Name | Grants Access To |
| Read Metadata |
|
| Manage Keys |
|
| Decrypt Secrets |
|
Managing & Revoking Connections
Users can review connected AI agents, inspect granted scopes, and revoke access at any time in the web dashboard: ApiVault Dashboard → Settings → MCP Connections
Error Codes & Troubleshooting
Error Code | Reason | Resolution |
| Expired or missing OAuth Bearer token. | Re-authenticate in Cursor or Claude Desktop via the Reconnect action. |
| Token lacks the required scope (e.g. tried | Re-authenticate and grant the |
| The account uses Custom Encryption Mode and no | Provide your custom vault key in the tool arguments. |
| The supplied custom vault key failed decryption check. | Check that your master vault key is correct and retry. |
| A key with the same name and environment already exists. | Use |
| The specified key ID does not exist in your vault. | Use |
| Unable to reach the ApiVault backend gateway. | Check internet connectivity and verify |
Self-Hosting & Development
You can run your own standalone MCP server or deploy it to your private cloud infrastructure:
Prerequisites
Node.js >= 20.12.0
npm or pnpm
1. Clone and Install
git clone https://github.com/TLB-STATION/apivault-mcp.git
cd apivault-mcp
npm install2. Configure Environment
Create .env.local:
# ApiVault Backend URL
API_VAULT_URL=https://apivault.tech
# Public URL of this MCP server
MCP_SERVER_URL=http://localhost:3001
# MCP Session TTL in minutes (default: 60). Increase to reduce
# "session not found" errors on serverless platforms with cold starts.
# MCP_SESSION_TTL_MINUTES=603. Run Development Server
npm run dev
# Server running at http://localhost:30014. Run Test Suite
npm test5. Build for Production
npm run build
npm startCommunity & Ecosystem
Main Platform: ApiVault Web Dashboard
AI Agent Skill: apivault-skill (GitHub)
CLI Tool: apivault-cli (npm)
Documentation: ApiVault Docs & Guides
Bug Reports & Issues: GitHub Issues
License
Distributed under the MIT License. See LICENSE for more information.
Copyright (c) 2026 TLB-STATION • ApiVault
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TLB-STATION/apivault-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server