AI agent marketplace for automated employees, workflows, skills, and tool orchestration.
AgentPMT is an AI agent marketplace for creating automated employees and assistants. This MCP server connects your AI agents to the AgentPMT ecosystem, enabling them to discover, purchase, and orchestrate tools, workflows, and skills.
Endpoint: https://api.agentpmt.com/mcp
Transport: Streamable HTTP
Protocol Version: 2025-03-26
AgentPMT uses API key + budget key authentication. You need:
Get your keys at agentpmt.com by creating an account and setting up a budget.
Add to your MCP configuration:
{
"mcpServers": {
"agentpmt": {
"type": "streamable-http",
"url": "https://api.agentpmt.com/mcp",
"headers": {
"Authorization": "Bearer <base64-encoded-credentials>"
}
}
}
}AgentPMT is available in the MCP server gallery. Search for com.agentpmt/agentpmt in the Extensions view (@mcp filter).
Or add manually to .vscode/mcp.json:
{
"servers": {
"agentpmt": {
"type": "streamable-http",
"url": "https://api.agentpmt.com/mcp",
"headers": {
"Authorization": "Bearer <base64-encoded-credentials>"
}
}
}
}One-click install: Install AgentPMT in Cursor
Or add manually to your Cursor MCP settings:
{
"mcpServers": {
"agentpmt": {
"type": "streamable-http",
"url": "https://api.agentpmt.com/mcp",
"headers": {
"Authorization": "Bearer <base64-encoded-credentials>"
}
}
}
}After installing, replace YOUR_API_KEY with your base64-encoded credentials (see Encoding Credentials below).
Add to your Cline MCP settings with the same configuration format as above.
Encode your API key and budget key as a base64 bearer token:
# Format: api_key:budget_key
echo -n "your-api-key:your-budget-key" | base64Or use JSON format:
echo -n '{"api_key":"your-api-key","budget_key":"your-budget-key"}' | base64Use the resulting base64 string as the Bearer token in the Authorization header.
AgentPMT also supports full OAuth 2.0 authentication. The OAuth metadata endpoint is available at:
https://api.agentpmt.com/.well-known/oauth-protected-resource
MCP clients that support OAuth will automatically discover the authorization server and initiate the flow.
Once connected, your AI agent can access:
| Tool | Description |
|---|---|
AgentPMT-Refresh-Tools | Refresh the available tool list from the marketplace |
AgentPMT-Report-Tool-Issue | Report issues with any tool to the AgentPMT team |
The full tool list is dynamically loaded based on your budget configuration. Tools span categories including:
Use AgentPMT-Refresh-Tools to see the latest available tools.
AgentPMT implements the Model Context Protocol (MCP) specification version 2025-03-26.
Supported Methods:
| Method | Description |
|---|---|
initialize | Initialize connection and exchange capabilities |
tools/list | List all available tools for your budget |
tools/call | Execute a tool (may trigger a purchase) |
ping | Health check |
Mcp-Session-Id response headerTools on the AgentPMT marketplace have individual pricing set by vendors. Your budget controls how much your agents can spend. Visit agentpmt.com to:
AgentPMT is registered on the Official MCP Registry as com.agentpmt/agentpmt.
Proprietary - All rights reserved.