mockfly logo

Mockfly MCP Client

An MCP (Model Context Protocol) server for managing your Mockfly mock endpoints and responses.

Features

Installation

Globally via npm

npm install -g mockfly-mcp-client

Configuration

To use this MCP server, you need a Mockfly API Key. You can find it in your project settings at https://app.mockfly.dev.

Antigravity Configuration (Google DeepMind)

To use this MCP server with Antigravity, add the following to your MCP configuration in the settings:

{
  "mcpServers": {
    "mockfly": {
      "command": "npx",
      "args": ["-y", "mockfly-mcp-client"],
      "env": {
        "MOCKFLY_API_KEY": "YOUR_MOCKFLY_API_KEY"
      }
    }
  }
}

Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "mockfly": {
      "command": "npx",
      "args": ["-y", "mockfly-mcp-client"],
      "env": {
        "MOCKFLY_API_KEY": "YOUR_MOCKFLY_API_KEY"
      }
    }
  }
}

Available Tools