Metadata-Version: 2.4
Name: flukebase-connect
Version: 0.2.0
Summary: MCP client for FlukeBase platform integration
Author: FlukeBase Team
License: MIT
Keywords: ai,claude,flukebase,mcp,memory
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27
Requires-Dist: keyring>=25.0.0
Requires-Dist: mcp>=1.0.0
Requires-Dist: pydantic>=2.6
Requires-Dist: rich>=13.0
Requires-Dist: tomli>=2.0
Requires-Dist: typer[all]>=0.12
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.3; extra == 'dev'
Description-Content-Type: text/markdown

# FlukeBase Connect

MCP client for AI-assisted development with the FlukeBase platform.

## Installation

```bash
# Recommended: one-line install
curl -sSL https://flukebase.me/install | sh

# Or with pip
pip install https://flukebase.me/releases/flukebase_connect-0.2.0-py3-none-any.whl
```

## Quick Start

```bash
# Authenticate
fbc login

# Check status
fbc status

# List projects
fbc projects

# List available tools
fbc tools
```

## MCP Integration

Add to your Claude Code settings:

```json
{
  "mcpServers": {
    "flukebase": {
      "command": "fbc",
      "args": ["mcp"]
    }
  }
}
```

## Documentation

Full documentation at: https://flukebase.me/docs

## License

MIT License - See LICENSE for details.
