Skip to main content

Pydantic v2 schemas and FastMCP decorators for chuk-mcp-ui Views

Project description

chuk-view-schemas

Pydantic v2 schemas and FastMCP decorators for chuk-mcp-ui Views.

Build MCP Apps with interactive UI — charts, maps, tables, dashboards — from Python, with zero JavaScript.

Install

# Schemas only
pip install chuk-view-schemas

# With FastMCP decorator support
pip install chuk-view-schemas[fastmcp]

Quick Start

from mcp.server.fastmcp import FastMCP
from chuk_view_schemas.fastmcp import chart_tool
from chuk_view_schemas.chart import ChartContent, ChartDataset

mcp = FastMCP("my-server")

@chart_tool(mcp, "show_popularity")
async def show_popularity(chart_type: str = "bar") -> ChartContent:
    """Show programming language popularity as an interactive chart."""
    return ChartContent(
        chartType=chart_type,
        title="Language Popularity",
        data=[
            ChartDataset(
                label="Usage %",
                values=[
                    {"label": "Python", "value": 31.0},
                    {"label": "JavaScript", "value": 25.2},
                    {"label": "Rust", "value": 18.1},
                ],
            )
        ],
    )

The @chart_tool decorator handles:

  • Registering the ui:// resource URI pointing to the hosted chart view
  • Wrapping the return in a CallToolResult with content + structuredContent
  • Generating a text fallback for the LLM

Available Decorators

from chuk_view_schemas.fastmcp import (
    map_tool,        # Interactive Leaflet map
    chart_tool,      # Bar, line, pie, scatter, etc.
    datatable_tool,  # Sortable, filterable table
    form_tool,       # JSON Schema driven form
    markdown_tool,   # Rich markdown rendering
    video_tool,      # HTML5 video player
    pdf_tool,        # PDF viewer
    dashboard_tool,  # Multi-panel layout
    split_tool,      # Two-panel side-by-side
    tabs_tool,       # Tabbed panels
    detail_tool,     # Single record display
    counter_tool,    # Big number with delta
    code_tool,       # Syntax highlighted code
    progress_tool,   # Progress bars
    confirm_tool,    # Confirmation dialog
    json_tool,       # JSON tree viewer
    status_tool,     # Traffic light status
    view_tool,       # Generic (any view type)
)

Schemas

All schemas are Pydantic v2 models with camelCase aliases for JSON serialization:

from chuk_view_schemas import (
    ChartContent, ChartDataset,
    MapContent, MapLayer,
    DataTableContent, Column,
    FormContent,
    DashboardContent, Panel,
    SplitContent, SplitPanel,
    TabsContent, Tab,
    MarkdownContent,
    VideoContent,
    PdfContent,
)

View Inference

Automatically suggest the best view for your data:

from chuk_view_schemas import infer_view

suggestion = infer_view([{"lat": 51.5, "lon": -0.1, "name": "London"}])
# ViewSuggestion(view="map", confidence=0.80, reason="Objects contain lat/lon fields")

Hosted Views

All views are pre-built and hosted at versioned URLs on Fly.io:

https://mcp-views.chukai.io/chart/v1
https://mcp-views.chukai.io/map/v1
https://mcp-views.chukai.io/datatable/v1
...

The decorators point at these URLs automatically. Your Python server never serves HTML.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chuk_view_schemas-0.1.8.tar.gz (32.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chuk_view_schemas-0.1.8-py3-none-any.whl (45.4 kB view details)

Uploaded Python 3

File details

Details for the file chuk_view_schemas-0.1.8.tar.gz.

File metadata

  • Download URL: chuk_view_schemas-0.1.8.tar.gz
  • Upload date:
  • Size: 32.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.2

File hashes

Hashes for chuk_view_schemas-0.1.8.tar.gz
Algorithm Hash digest
SHA256 a0ce43a811187799be7b7cf079e66478b688c60b7f7a7454ce67f80afb56a278
MD5 1f045e0e48c739fb928eb32c25e74e67
BLAKE2b-256 e420e7aadf985be0ec85f22a56ac5924e9ced1f80ce31b451e5970d29bd0694a

See more details on using hashes here.

File details

Details for the file chuk_view_schemas-0.1.8-py3-none-any.whl.

File metadata

File hashes

Hashes for chuk_view_schemas-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 131fceac8f0deeb8e0cfe2a3dd050c83da298c863ca99bdd2f2db7b11a25f3f7
MD5 5df56f45d4e6a10767923e54f5592785
BLAKE2b-256 f1983b881175f7d3ff5573f9e04bc2e01a7e8f0e05a9f1c3dae5cd7548c73477

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page