Overview
mock-data-mcp is a server application that generates mock data for testing and development purposes.
To use mock-data-mcp, set up the server by following the instructions in the GitHub repository, and then make API calls to generate the desired mock data.
- Generates customizable mock data for various use cases - Supports multiple data formats (JSON, XML, etc.) - Easy integration with existing applications
- Testing applications without relying on real data
- Simulating user interactions in development environments
- Creating sample datasets for demos and presentations
Add to your AI client
Use these steps to connect mock-data-mcp 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-data-mcp-rhitune2": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mock-data-mcp-rhitune2"
]
}
}
}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-data-mcp-rhitune2": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mock-data-mcp-rhitune2"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mock-data-mcp-rhitune2": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mock-data-mcp-rhitune2"
]
}
}
}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-data-mcp-rhitune2": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mock-data-mcp-rhitune2"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mock-data-mcp-rhitune2": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mock-data-mcp-rhitune2"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mock-data-mcp-rhitune2": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mock-data-mcp-rhitune2"
]
}
}
}FAQ
Can I customize the mock data generated?
Yes! You can specify parameters to customize the data according to your needs.
Is mock-data-mcp free to use?
Yes! mock-data-mcp is open-source and free to use.
What programming languages can I use with mock-data-mcp?
mock-data-mcp is built with JavaScript, but it can be used with any language that can make HTTP requests.