holdify-mcp
OfficialClick 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., "@holdify-mcpCheck my current usage and key count"
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.
@holdify/mcp
MCP (Model Context Protocol) server for the Holdify API. Enables AI assistants like Claude and Cursor to manage API keys, check usage, and debug authentication issues.
Installation
npm install -g @holdify/mcp
# or
npx @holdify/mcpRelated MCP server: StashDog MCP Server
Configuration
Set the following environment variables:
# Required: Your Holdify project API key
export HOLDIFY_API_KEY=hld_proj_live_xxx
# Optional: Custom API URL (defaults to https://api.holdify.io)
export HOLDIFY_API_URL=https://api.holdify.io
# Optional: Request timeout in ms (defaults to 30000)
export HOLDIFY_TIMEOUT=30000Usage with Claude Desktop
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"holdify": {
"command": "npx",
"args": ["@holdify/mcp"],
"env": {
"HOLDIFY_API_KEY": "hld_proj_live_your-key-here"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"holdify": {
"command": "npx",
"args": ["@holdify/mcp"],
"env": {
"HOLDIFY_API_KEY": "hld_proj_live_your-key-here"
}
}
}
}Available Features
Resources (Read-only data)
Resource | URI | Description |
Project Summary |
| Project overview with plan, limits, and key count |
API Keys List |
| List all API keys for the project |
Key Details |
| Get detailed info about a specific key |
Usage Stats |
| Current usage statistics (30-day period) |
Audit Log |
| Recent audit events (last 50) |
Tools (Actions)
Tool | Description | Input |
| Create a new API key |
|
| Verify if an API key is valid |
|
| Permanently revoke an API key |
|
| Rotate an API key (24h grace period) |
|
| Get usage statistics |
|
Prompts (Templates)
Prompt | Description | Arguments |
| Help setting up API authentication |
|
| Debug API key problems |
|
Example Interactions
Check project status
"What's my current usage and how many keys do I have?"
The AI will read holdify://project to get plan info, usage stats, and key count.
Create a new API key
"Create a new API key called 'Production Server' for environment env_abc123"
The AI will use the create_api_key tool and return the new key (save it immediately!).
Debug authentication issues
"My API key isn't working, I'm getting a 401 error"
The AI will use the debug_key_issue prompt to guide you through troubleshooting.
Check rate limits
"Am I close to my rate limit?"
The AI will use get_usage to check your current usage and quota status.
Security
API keys are masked in responses (only prefix + last 4 chars shown)
Full keys are only returned on creation/rotation
All operations are scoped to your project via the project API key
Development
# Install dependencies
pnpm install
# Build the package
pnpm build
# Run locally
HOLDIFY_API_KEY=your-key node dist/index.jsLicense
MIT
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/Holdifyio/holdify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server