MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

Model Context Protocol (MCP) server that dynamically fetches and serves official Flet resources to AI agents, including documentation, controls, packages, and ecosystem components.

Created 4/25/2026
Updated about 5 hours ago
Repository documentation and setup instructions

Flet MCP Server logo

Flet MCP Server

Model Context Protocol server that serves official Flet resources to AI agents.

PyPI version Downloads CI status Python >= 3.10 Nwokike/flet-mcp-server MCP server


Flet MCP Server dynamically fetches and serves official Flet documentation, controls, packages, and ecosystem resources for AI agents and MCP-compatible clients.

Nwokike/flet-mcp-server MCP server

Features

  • GitHub Tree Sync: Maps documentation in real-time.
  • Intelligent Caching: Uses diskcache for fast responses.
  • Ecosystem Discovery: Finds and verifies official and community Flet packages.
  • AI-Optimized: Tool definitions designed for LLM understanding.

Tools Included

1. list_flet_controls

List all available Flet UI controls.

2. search_flet_docs(query)

Search the documentation index.

3. get_flet_doc(doc_path)

Get raw Markdown for a specific doc.

4. list_official_packages()

List official Flet extension packages.

5. search_flet_ecosystem(query)

Search for verified community Flet components.

6. get_package_details(package_name)

Fetch version and installation info from PyPI.

Client Configuration Examples

🌌 Antigravity / Cascade

Add this to your mcp_config.json:

{
  "mcpServers": {
    "flet-mcp-server": {
      "command": "uvx",
      "args": ["flet-mcp-server"]
    }
  }
}

🤖 Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "flet-mcp-server": {
      "command": "uvx",
      "args": ["flet-mcp-server"]
    }
  }
}

💻 Cursor / Windsurf

In your IDE's MCP settings, add a new server:

  • Name: Flet MCP
  • Type: Command
  • Command: uvx flet-mcp-server

Development

Directory Structure

flet-mcp-server/
├── .github/
│   └── workflows/
│       ├── ci.yml
│       └── publish.yml
├── docs/
│   ├── ARCHITECTURE.md
│   └── CONTRIBUTING.md
├── src/
│   └── flet_mcp/
│       ├── services/
│       │   ├── github_docs.py
│       │   ├── packages.py
│       │   └── __init__.py
│       ├── main.py
│       ├── server.py
│       └── __init__.py
├── tests/
│   └── test_fetcher.py
├── LICENSE
├── README.md
├── pyproject.toml
└── uv.lock

Install

git clone https://github.com/Nwokike/flet-mcp-server.git
cd flet-mcp-server
uv sync

Test

uv run pytest

License

MIT

Quick Setup
Installation guide for this server

Install Package (if required)

uvx flet-mcp-server

Cursor configuration (mcp.json)

{ "mcpServers": { "nwokike-flet-mcp-server": { "command": "uvx", "args": [ "flet-mcp-server" ] } } }