loading…
Search for a command to run...
loading…
Mock Server AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Mock Server AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Mock Server Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
create_endpoint |
Create a mock API endpoint definition. Provide response_schema as JSON object ma |
list_endpoints |
List all registered mock API endpoints. |
generate_mock_data |
Generate mock data from a JSON schema. Schema maps field names to types: string, |
validate_schema |
Validate a data object against a schema definition. Reports missing fields, type |
pip install meok-mock-server-ai-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"mock-server-ai": {
"command": "python",
"args": ["-m", "meok_mock_server_ai_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 4 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"mock-server-ai-mcp": {
"command": "npx",
"args": []
}
}
}