drio
Open app

mock-assistant-mcp-server

Source

mcp server assistant for mock data

Catalog onlyCatalog onlySTDIO

Overview

mock-assistant-mcp-server is an MCP server assistant designed to generate and manage mock data for testing and development purposes.

To use the mock-assistant-mcp-server, clone the repository from GitHub, install the necessary dependencies, and run the server to start generating mock data.

  • Generates realistic mock data for various testing scenarios. - Supports customization of data generation parameters. - Easy integration with existing applications and testing frameworks.
  1. Testing applications with realistic data without compromising sensitive information.
  2. Simulating user interactions in development environments.
  3. Facilitating automated testing processes with dynamic data generation.

Add to your AI client

Use these steps to connect mock-assistant-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mock-assistant-mcp-server-ogulcanarbc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mock-assistant-mcp-server-ogulcanarbc"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mock-assistant-mcp-server-ogulcanarbc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mock-assistant-mcp-server-ogulcanarbc"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mock-assistant-mcp-server-ogulcanarbc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mock-assistant-mcp-server-ogulcanarbc"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mock-assistant-mcp-server-ogulcanarbc": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mock-assistant-mcp-server-ogulcanarbc"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mock-assistant-mcp-server-ogulcanarbc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mock-assistant-mcp-server-ogulcanarbc"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mock-assistant-mcp-server-ogulcanarbc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mock-assistant-mcp-server-ogulcanarbc"
      ]
    }
  }
}

FAQ

Can I customize the mock data generated?

Yes! The mock-assistant-mcp-server allows you to customize the parameters for data generation to fit your specific needs.

Is mock-assistant-mcp-server free to use?

Yes! The project is open-source and free to use for everyone.

What programming language is used in mock-assistant-mcp-server?

The project is developed using TypeScript.