mcp MCP

Welcome! This is the MCP server for interacting with the mcp API. Use it with Claude, Cursor, or any other tool that supports MCP.

Getting Started


MCP URL
https://cloudinary-test-mcp-server.kanwar-a2e.workers.dev/mcp

Installation


Claude Desktop
One-click installation for Claude Desktop users

Instructions:

  1. Download the DXT file
  2. Open Claude Desktop and go to SettingsExtensions
  3. Drag the DXT file into the Extensions page to install the MCP server
The DXT file contains all necessary configuration for the MCP server and will be automatically installed when dragged into the Extensions page.
Cursor
One-click installation for Cursor users
Add SDK MCP server to Cursor

Or manually:

  1. Open Cursor Settings
  2. Select Tools and Integrations
  3. Select New MCP Server
  4. Paste the following JSON into the MCP Server Configuration field:
{
  "mcpServers": {
    "SDK": {
      "type": "mcp",
      "url": "https://cloudinary-test-mcp-server.kanwar-a2e.workers.dev/mcp",
      "headers": {
        "x-cloudinary-auth": "${MCP_CLOUDINARY_AUTH}",
        "x-oauth2": "${MCP_OAUTH2}"
      }
    }
  }
}
Claude Code CLI
Use the Claude Code CLI to add the MCP server:
claude mcp add --transport http SDK https://cloudinary-test-mcp-server.kanwar-a2e.workers.dev/mcp --header "x-cloudinary-auth: ..." --header "x-oauth2: ..." 
Manual Installation
Start the MCP server manually using npx:
npx mcp start --api-key ... --api-secret ... --oauth2 ... --cloud-name ...
For a full list of server arguments:
npx mcp --help