Skip to main content

Overview

The MCPfy API uses Bearer token authentication for secure access to all endpoints. You’ll need to obtain an API key from your dashboard and use it to generate MCP tokens for your applications.

Getting Your API Key

1

Login to MCPfy Dashboard

Navigate to mcpfy.ai and log in to your account.
2

Access API Keys

In the sidebar, go to API Keys section.
3

Create or Use API Key

Either create a new API key or use an existing one from the list.
Store your API key securely and never expose it in client-side code or public repositories.

Using MCP Tokens

Once you have generated an MCP token, use it in subsequent API calls:
curl --location 'https://api.mcpfy.ai/dev/v1/your-endpoint' \
--header 'Authorization: Bearer mcp_token_abc123xyz789' \
--header 'Content-Type: application/json'