- Add list_components tool: list DMC components by category - Add get_component_props tool: get props schema with types/defaults/enums - Add validate_component tool: validate props with error/warning messages - Includes typo detection and common mistake warnings - All tools registered in MCP server with proper JSON schemas Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
234 lines
8.2 KiB
Python
234 lines
8.2 KiB
Python
"""
|
|
MCP Server entry point for viz-platform integration.
|
|
|
|
Provides Dash Mantine Components validation, charting, layout, theming, and page tools
|
|
to Claude Code via JSON-RPC 2.0 over stdio.
|
|
"""
|
|
import asyncio
|
|
import logging
|
|
import json
|
|
from mcp.server import Server
|
|
from mcp.server.stdio import stdio_server
|
|
from mcp.types import Tool, TextContent
|
|
|
|
from .config import VizPlatformConfig
|
|
from .dmc_tools import DMCTools
|
|
|
|
# Suppress noisy MCP validation warnings on stderr
|
|
logging.basicConfig(level=logging.INFO)
|
|
logging.getLogger("root").setLevel(logging.ERROR)
|
|
logging.getLogger("mcp").setLevel(logging.ERROR)
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class VizPlatformMCPServer:
|
|
"""MCP Server for visualization platform integration"""
|
|
|
|
def __init__(self):
|
|
self.server = Server("viz-platform-mcp")
|
|
self.config = None
|
|
self.dmc_tools = DMCTools()
|
|
# Tool handlers will be added in subsequent issues
|
|
# self.chart_tools = None
|
|
# self.layout_tools = None
|
|
# self.theme_tools = None
|
|
# self.page_tools = None
|
|
|
|
async def initialize(self):
|
|
"""Initialize server and load configuration."""
|
|
try:
|
|
config_loader = VizPlatformConfig()
|
|
self.config = config_loader.load()
|
|
|
|
# Initialize DMC tools with detected version
|
|
dmc_version = self.config.get('dmc_version')
|
|
self.dmc_tools.initialize(dmc_version)
|
|
|
|
# Log available capabilities
|
|
caps = []
|
|
if self.config.get('dmc_available'):
|
|
caps.append(f"DMC {dmc_version}")
|
|
if self.dmc_tools._initialized:
|
|
caps.append(f"Registry loaded ({self.dmc_tools.registry.loaded_version})")
|
|
else:
|
|
caps.append("DMC (not installed)")
|
|
|
|
logger.info(f"viz-platform MCP Server initialized with: {', '.join(caps)}")
|
|
|
|
except Exception as e:
|
|
logger.error(f"Failed to initialize: {e}")
|
|
raise
|
|
|
|
def setup_tools(self):
|
|
"""Register all available tools with the MCP server"""
|
|
|
|
@self.server.list_tools()
|
|
async def list_tools() -> list[Tool]:
|
|
"""Return list of available tools"""
|
|
tools = []
|
|
|
|
# DMC validation tools (Issue #172)
|
|
tools.append(Tool(
|
|
name="list_components",
|
|
description=(
|
|
"List available Dash Mantine Components. "
|
|
"Returns components grouped by category with version info. "
|
|
"Use this to discover what components are available before building UI."
|
|
),
|
|
inputSchema={
|
|
"type": "object",
|
|
"properties": {
|
|
"category": {
|
|
"type": "string",
|
|
"description": (
|
|
"Optional category filter. Available categories: "
|
|
"buttons, inputs, navigation, feedback, overlays, "
|
|
"typography, layout, data_display, charts, dates"
|
|
)
|
|
}
|
|
},
|
|
"required": []
|
|
}
|
|
))
|
|
|
|
tools.append(Tool(
|
|
name="get_component_props",
|
|
description=(
|
|
"Get the props schema for a specific DMC component. "
|
|
"Returns all available props with types, defaults, and allowed values. "
|
|
"ALWAYS use this before creating a component to ensure valid props."
|
|
),
|
|
inputSchema={
|
|
"type": "object",
|
|
"properties": {
|
|
"component": {
|
|
"type": "string",
|
|
"description": "Component name (e.g., 'Button', 'TextInput', 'Select')"
|
|
}
|
|
},
|
|
"required": ["component"]
|
|
}
|
|
))
|
|
|
|
tools.append(Tool(
|
|
name="validate_component",
|
|
description=(
|
|
"Validate component props before use. "
|
|
"Checks for invalid props, type mismatches, and common mistakes. "
|
|
"Returns errors and warnings with suggestions for fixes."
|
|
),
|
|
inputSchema={
|
|
"type": "object",
|
|
"properties": {
|
|
"component": {
|
|
"type": "string",
|
|
"description": "Component name to validate"
|
|
},
|
|
"props": {
|
|
"type": "object",
|
|
"description": "Props object to validate"
|
|
}
|
|
},
|
|
"required": ["component", "props"]
|
|
}
|
|
))
|
|
|
|
# Chart tools (Issue #173)
|
|
# - chart_create
|
|
# - chart_configure_interaction
|
|
|
|
# Layout tools (Issue #174)
|
|
# - layout_create
|
|
# - layout_add_filter
|
|
# - layout_set_grid
|
|
|
|
# Theme tools (Issue #175)
|
|
# - theme_create
|
|
# - theme_extend
|
|
# - theme_validate
|
|
# - theme_export_css
|
|
|
|
# Page tools (Issue #176)
|
|
# - page_create
|
|
# - page_add_navbar
|
|
# - page_set_auth
|
|
|
|
return tools
|
|
|
|
@self.server.call_tool()
|
|
async def call_tool(name: str, arguments: dict) -> list[TextContent]:
|
|
"""Handle tool invocation."""
|
|
try:
|
|
# DMC validation tools
|
|
if name == "list_components":
|
|
result = await self.dmc_tools.list_components(
|
|
category=arguments.get('category')
|
|
)
|
|
return [TextContent(
|
|
type="text",
|
|
text=json.dumps(result, indent=2)
|
|
)]
|
|
|
|
elif name == "get_component_props":
|
|
component = arguments.get('component')
|
|
if not component:
|
|
return [TextContent(
|
|
type="text",
|
|
text=json.dumps({"error": "component is required"}, indent=2)
|
|
)]
|
|
result = await self.dmc_tools.get_component_props(component)
|
|
return [TextContent(
|
|
type="text",
|
|
text=json.dumps(result, indent=2)
|
|
)]
|
|
|
|
elif name == "validate_component":
|
|
component = arguments.get('component')
|
|
props = arguments.get('props', {})
|
|
if not component:
|
|
return [TextContent(
|
|
type="text",
|
|
text=json.dumps({"error": "component is required"}, indent=2)
|
|
)]
|
|
result = await self.dmc_tools.validate_component(component, props)
|
|
return [TextContent(
|
|
type="text",
|
|
text=json.dumps(result, indent=2)
|
|
)]
|
|
|
|
# Chart tools (Issue #173)
|
|
# Layout tools (Issue #174)
|
|
# Theme tools (Issue #175)
|
|
# Page tools (Issue #176)
|
|
|
|
raise ValueError(f"Unknown tool: {name}")
|
|
|
|
except Exception as e:
|
|
logger.error(f"Tool {name} failed: {e}")
|
|
return [TextContent(
|
|
type="text",
|
|
text=json.dumps({"error": str(e)}, indent=2)
|
|
)]
|
|
|
|
async def run(self):
|
|
"""Run the MCP server"""
|
|
await self.initialize()
|
|
self.setup_tools()
|
|
|
|
async with stdio_server() as (read_stream, write_stream):
|
|
await self.server.run(
|
|
read_stream,
|
|
write_stream,
|
|
self.server.create_initialization_options()
|
|
)
|
|
|
|
|
|
async def main():
|
|
"""Main entry point"""
|
|
server = VizPlatformMCPServer()
|
|
await server.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|