agentkeys-mcp
OfficialAllows AI agents to make API calls to GitHub through the AgentKeys proxy using stored credentials, keeping secrets secure.
Allows AI agents to make API calls to Resend through the AgentKeys proxy using stored credentials, keeping secrets secure.
Allows AI agents to make API calls to Stripe through the AgentKeys proxy using stored credentials, keeping secrets secure.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agentkeys-mcpCreate an agent for email sending, assign my Resend key, and send a test email."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@agentkeys-io/mcp
An MCP (Model Context Protocol) server that lets AI agents manage credentials and make proxied API calls through AgentKeys.
Store API keys in AgentKeys and let your agent use them safely through the proxy — without ever seeing the raw secrets.
Quick Start
AGENTKEYS_API_KEY=ak_ws_xxxx npx @agentkeys-io/mcpGet your workspace API key from app.agentkeys.io/settings.
Related MCP server: Vault MCP
Configuration
Environment Variable | Required | Default | Description |
| ✅ Yes | — | Workspace API key (starts with |
| No |
| AgentKeys web app URL |
| No |
| AgentKeys proxy URL |
MCP Client Configuration
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"agentkeys": {
"command": "npx",
"args": ["@agentkeys-io/mcp"],
"env": {
"AGENTKEYS_API_KEY": "ak_ws_your_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"agentkeys": {
"command": "npx",
"args": ["@agentkeys-io/mcp"],
"env": {
"AGENTKEYS_API_KEY": "ak_ws_your_key_here"
}
}
}
}Windsurf / Cline
Same config format — add to your MCP settings:
{
"mcpServers": {
"agentkeys": {
"command": "npx",
"args": ["@agentkeys-io/mcp"],
"env": {
"AGENTKEYS_API_KEY": "ak_ws_your_key_here"
}
}
}
}Available Tools
Credential Management
list_credentials
List all credentials stored in the workspace.
create_credential
Create a new credential in the workspace.
Parameter | Type | Required | Description |
| string | ✅ | Unique name for this credential |
| string | ✅ |
|
| string | For | The secret value |
| string | No | Provider name (e.g. |
| string | No | Provider API base URL (e.g. |
delete_credential
Delete a credential by ID. Also revokes all associated proxy tokens.
Agent Management
list_agents
List all agents in the workspace.
create_agent
Create a new agent identity.
Parameter | Type | Required | Description |
| string | ✅ | Agent name (e.g. |
| string | No | What this agent does |
assign_credential
Assign a credential to an agent. Returns a proxy token.
⚠️ The proxy token is shown once — store it securely.
Proxy Requests
proxy_request
Make an API call through the AgentKeys proxy.
Parameter | Type | Required | Description |
| string | ✅ | Proxy token (starts with |
| string | ✅ | Target URL (e.g. |
| string | No | HTTP method (default: |
| object | No | Additional request headers |
| string | No | JSON string body |
Typical Workflow
1. list_credentials → see what's available
2. create_agent → create agent for this task
3. assign_credential → get proxy token
4. proxy_request → call API using proxy tokenLinks
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceCredential isolation proxy for AI agents. Injects API keys at the network boundary so your agent never sees the raw credential. Supports domain allowlists, agent auth, policy enforcement, and audit logging.Last updated38713Apache 2.0
- Alicense-qualityFmaintenanceEnables LLM agents to securely use credentials like passwords and API keys without exposing them in the context window, through encrypted storage and proxy-based injection.Last updated61MIT
- Alicense-qualityCmaintenanceEnables secure credential storage for AI agents by encrypting secrets and providing agent-invisible references, ensuring sensitive data never leaks to the model.Last updatedMIT
- Alicense-qualityCmaintenanceEnables AI agents to securely access authenticated services (HTTP, SSH, SMTP) without exposing secrets, by acting as a server-side proxy that injects authentication.Last updatedMIT
Related MCP Connectors
Issue, rotate and revoke scoped API-key passes for 25+ providers — the agent never sees a real key
Agent payments, API key vaulting, and governed mandates. Agents spend within user-defined limits.
Encrypted secret store and rotation for autonomous agent credentials
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/agentkeys-io/agentkeys-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server