Skip to main content

Arclio-rules mcp-server created using fastmcp ๐Ÿš€

Project description

Arclio Rules ๐Ÿš€

Arclio Rules is a FastAPI-based service that implements rule processing using the FastMCP framework. It provides a robust and efficient system for managing and executing business rules in a microservices architecture.

Overview

Arclio Rules is built with Python 3.12+ and leverages modern async capabilities to provide high-performance rule processing. The service can be run either with session management or in a stateless mode using standard I/O.

Features

  • FastAPI-based REST API
  • Built on FastMCP framework for efficient rule processing
  • Elasticsearch integration for rule storage and querying
  • Git integration for version control of rules
  • Support for both session-based and stateless operation modes
  • Frontmatter parsing capabilities
  • Comprehensive logging with Loguru
  • UV package management for fast, reliable dependency handling
  • Make-based workflow automation

Prerequisites

  • Python 3.12.8 or higher
  • UV package manager
  • Docker (optional, for containerized deployment)
  • Age (for secrets management)

Installation

  1. Clone the repository:
git clone https://github.com/fisseha-estifanos/arclio-rules.git
cd arclio-rules
  1. Install dependencies using UV:
make install

This will:

  • Install project dependencies using UV
  • Set up the development environment
  • Sync all dependencies

Environment Setup

  1. Initialize SOPS for secret management:
make init-key
  1. Create your environment file:
# Copy the example environment file
cp .env.example .env

# Decrypt existing secrets (if you have access)
make decrypt

Required Environment Variables:

# GitHub API Configuration
GITHUB_TOKEN="add your GH PAT here"
GITHUB_ORG="add your GH Organization here"
REPO_NAME="add your repo that holds the rules here"

Default Environmental Variables (No need to modify):

# Server Configuration
PORT=8000                     # Application port
HOST=0.0.0.0                  # Host to bind to

# Additional Settings
LOG_LEVEL=INFO                # Logging level (DEBUG, INFO, WARNING, ERROR)
ENVIRONMENT=development       # Application environment

Usage

The service can be run in two modes:

Stateless Mode (using stdio)

source .env
arclio-rules

Development Mode

make run-dev

Adding mcp-server on Arclio

Add these two configuration JSON templates to be able to add arclio-rules to Arclio as an mcp-server.

Configuration Template JSON

{
  "mcpServers": {
    "arclio-rules": {
      "command": "uvx",
      "args": [
        "--from",
        "arclio-rules",
        "arclio-rules"
      ],
      "env": {
        "GITHUB_TOKEN": "{{github_token}}",
        "GITHUB_ORG": "{{github_org}}",
        "REPO_NAME": "{{repo_name}}",
        "PORT": "{{port}}",
        "HOST": "{{host}}",
        "LOG_LEVEL": "{{log_level}}",
        "ENVIRONMENT": "{{environment}}"
      }
    }
  }
}

UI Schema JSON

{
  "sections": [
    {
      "title": "GitHub Configuration",
      "type": "instructions",
      "content": "Configure GitHub access for rule repository management"
    },
    {
      "title": "GitHub Personal Access Token",
      "type": "password",
      "field": "github_token"
    },
    {
      "title": "GitHub Organization",
      "type": "text",
      "field": "github_org"
    },
    {
      "title": "Repository Name",
      "type": "text",
      "field": "repo_name"
    },
    {
      "title": "Server Configuration",
      "type": "instructions",
      "content": "Configure server settings (optional - defaults will be used if not specified)"
    },
    {
      "title": "Application Port",
      "type": "text",
      "field": "port"
    },
    {
      "title": "Host Address",
      "type": "text",
      "field": "host"
    },
    {
      "title": "Log Level",
      "type": "text",
      "field": "log_level"
    },
    {
      "title": "Environment",
      "type": "text",
      "field": "environment"
    }
  ]
}

Development Commands

The project includes a comprehensive Makefile for common development tasks:

# Development
make run-dev         # Run development server
make install         # Install dependencies
make build           # Build the project
make publish         # Publish the project to pypi

# Code Quality
make lint            # Run Ruff linter
make type-check      # Run Pyright type checker
make format          # Format code with Ruff
make pre-commit      # Run all code quality checks

# Secrets Management
make init-key        # Generate new age key for SOPS
make encrypt         # Encrypt .env to .env.sops
make decrypt         # Decrypt .env.sops to .env
make add-recipient   # Add new public key (make add-recipient KEY=age1...)

Project Structure

arclio-rules/ โ”œโ”€โ”€ .github/ โ”‚ โ””โ”€โ”€ workflows/ โ”‚ โ””โ”€โ”€ linting-and-pyright.yml โ”œโ”€โ”€ .gitignore โ”œโ”€โ”€ LICENSE โ”œโ”€โ”€ Makefile โ”œโ”€โ”€ README.md โ”œโ”€โ”€ pyproject.toml โ”œโ”€โ”€ pyrightconfig.json โ”œโ”€โ”€ src/ โ”‚ โ””โ”€โ”€ arclio_rules/ โ”‚ โ”œโ”€โ”€ init.py โ”‚ โ”œโ”€โ”€ main.py โ”‚ โ”œโ”€โ”€ datamodels/ โ”‚ โ”‚ โ”œโ”€โ”€ client_schema.py โ”‚ โ”‚ โ””โ”€โ”€ rule_schema.py โ”‚ โ”œโ”€โ”€ inhouse_rules/ โ”‚ โ”‚ โ””โ”€โ”€ example_rule.py โ”‚ โ”œโ”€โ”€ main.py โ”‚ โ”œโ”€โ”€ routes/ โ”‚ โ”‚ โ””โ”€โ”€ rules.py โ”‚ โ””โ”€โ”€ services/ โ”‚ โ”œโ”€โ”€ rule_indexing_service.py โ”‚ โ”œโ”€โ”€ rule_resolution_service.py โ”‚ โ””โ”€โ”€ rule_storage_service.py โ”œโ”€โ”€ tests/ โ””โ”€โ”€ .env.example

Configuration

The project uses various configuration files:

  • pyproject.toml: Project metadata and dependencies
  • pyrightconfig.json: Python type checking configuration
  • .sops.yaml: Secrets management configuration
  • docker-compose.yml: Container orchestration settings
  • .env: Environment variables (created from .env.example)

Development

Package Management with UV

The project uses UV for dependency management, offering:

  • Faster package installation
  • Reliable dependency resolution
  • Consistent environments across development and production
  • Integration with virtual environments

Code Quality Tools

The project uses several tools to maintain code quality:

  • Ruff: For linting and formatting
    • Enforces PEP 8 style guide
    • Manages import sorting
    • Checks docstring formatting (Google style)
  • MyPy: For static type checking
  • Pytest: For testing (with async support)

Linting Rules

The project enforces specific linting rules through Ruff, including:

  • PEP 8 compliance (E)
  • PyFlakes checks (F)
  • Import sorting (I)
  • Docstring formatting (D)

Dependencies

Key dependencies include:

  • fastapi: Web framework
  • fastmcp: MCP framework integration
  • elasticsearch: Search and storage
  • aiohttp: Async HTTP client
  • pydantic: Data validation
  • uvicorn: ASGI server

License

[Add your license information here]

Contributing

[Add contribution guidelines here]

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

arclio_rules-0.5.3.tar.gz (72.2 kB view details)

Uploaded Source

Built Distribution

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

arclio_rules-0.5.3-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file arclio_rules-0.5.3.tar.gz.

File metadata

  • Download URL: arclio_rules-0.5.3.tar.gz
  • Upload date:
  • Size: 72.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arclio_rules-0.5.3.tar.gz
Algorithm Hash digest
SHA256 652cd259aee04d69a8bce90ee9218702033dd9e3f3d819b38b23212c7133e54c
MD5 466ef36828a6b8117ffa24d7d71fc7d2
BLAKE2b-256 1d71c122459886923d88f64fc35452bdacc7073cfa1c1862d09a42fcb990a8cc

See more details on using hashes here.

File details

Details for the file arclio_rules-0.5.3-py3-none-any.whl.

File metadata

  • Download URL: arclio_rules-0.5.3-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arclio_rules-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 13a9a466fed556bf29c7d8dc796bab64c39dfaf992ffe6e02e5fd703937da8ea
MD5 502b0c5f9b0256528e8811f507309639
BLAKE2b-256 02deaaeed453eb3c4fffc175e0c3ac333039adde42e934cebb7490935c572e20

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