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.
Latest Blog Posts
- 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