Skip to main content

A lightweight, file-based function execution engine.

Project description

Brimley

Early-stage MCP tooling runtime focused on faster iteration loops.

Status: Brimley is not yet ready for production use. It is aimed at improving the MCP development workflow and is still under active development.

Brimley is an authoring and execution engine for function-based AI tooling. It is focused on reducing the change/test loop during MCP tool development: change code -> reload -> re-test.

Design goals

  • Faster iteration loop: author tools in .py, .sql, and .md files and execute them immediately, without a full redeploy cycle.
  • Safer change workflow: discovery is AST-first for Python (no import-time execution during scan), with diagnostics instead of immediate process termination.
  • Live runtime ergonomics: use a thin REPL client attached to a daemon-owned runtime, with optional watch-mode reload.
  • MCP integration path: expose selected functions as MCP tools via FastMCP when needed.
  • Operations clarity: built-in reload diagnostics, runtime error surfacing, and explicit daemon lifecycle controls.

Architectural approach

Brimley separates tool authoring/execution semantics from MCP transport hosting:

  • Brimley handles discovery, schemas, argument resolution, execution, reload policy, and diagnostics.
  • FastMCP (optional) handles MCP server transport.

Keeping function logic separate from transport makes it reusable across local REPL workflows, dedicated MCP serving, and host-embedded deployments.

Quick Start

1) Install

poetry install

Optional MCP support:

poetry install -E fastmcp

2) Add brimley.yaml

brimley:
  app_name: "Brimley App"

config:
  support_email: "support@example.com"

state:
  request_count: 0

databases:
  default:
    connector: sqlite
    url: "sqlite:///./data.db"

auto_reload:
  enabled: true

mcp:
  embedded: true
  host: 127.0.0.1
  port: 8000

3) Add a Python function (calc.py)

from brimley import function

@function(mcpType="tool")
def calculate_tax(amount: float, rate: float = 8.25) -> float:
    return round(amount * (rate / 100.0), 2)

4) Run REPL

PYTHONPATH=src poetry run brimley repl --root .

5) Invoke once from CLI

PYTHONPATH=src poetry run brimley invoke calculate_tax --root . --input "{amount: 100, rate: 8.25}"

Core CLI Commands

  • brimley repl --root . [--mcp|--no-mcp] [--watch|--no-watch]
  • brimley repl --root . --shutdown-daemon
  • brimley mcp-serve --root . [--watch|--no-watch] [--host HOST] [--port PORT]
  • brimley invoke <function_name> --root . --input "{...}"
  • brimley build --root . [--output PATH]
  • brimley validate --root . [--format text|json] [--fail-on warning|error] [--output PATH]
  • brimley schema-convert --in schema.yaml --out fieldspec.yaml [--allow-lossy]

MCP Integration

Mark a function as an MCP tool:

  • Python: @function(mcpType="tool")
  • SQL/Template frontmatter:
mcp:
  type: tool

Then serve tools with:

PYTHONPATH=src poetry run brimley mcp-serve --root .

Runtime Model (0.6 architecture baseline)

  • REPL uses a thin client attached to a daemon-owned runtime.
  • Daemon owns state, watcher lifecycle, and embedded MCP hosting.
  • /detach leaves daemon running; /quit (or --shutdown-daemon) terminates daemon session.
  • Reload is partitioned and diagnostics-driven; schema-shape tool changes require MCP client reconnect.

Documentation Map

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

brimley-0.6.1.tar.gz (68.5 kB view details)

Uploaded Source

Built Distribution

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

brimley-0.6.1-py3-none-any.whl (86.0 kB view details)

Uploaded Python 3

File details

Details for the file brimley-0.6.1.tar.gz.

File metadata

  • Download URL: brimley-0.6.1.tar.gz
  • Upload date:
  • Size: 68.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for brimley-0.6.1.tar.gz
Algorithm Hash digest
SHA256 e3e9c884dde959b5c7411643530b7c59025776e10082fa176fe1f07493e543cb
MD5 4ba43be414dbd62eb1fba4da21e46cc1
BLAKE2b-256 6433a374c274f02027bac6350adc96faca9853ff68904f1def80b5bf204ae419

See more details on using hashes here.

File details

Details for the file brimley-0.6.1-py3-none-any.whl.

File metadata

  • Download URL: brimley-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 86.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for brimley-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 526c83ff2be312d4e05da55b7b355bf2d4aea6261cc5cddd37765d06d4563931
MD5 b0af77f4cac2919c391495f40143b0b8
BLAKE2b-256 c30a6fabec356123c90009da4152d5815e2a3918ec239682118e695549cf0af1

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