An open API service indexing awesome lists of open source software.

https://github.com/factorly-dev/factorly

Factorly is a local runtime for agent tool chains. It manages tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything. Your agent sees workflows, tools, and data. Secrets stay secret.
https://github.com/factorly-dev/factorly

agent ai cli mcp mcp-client mcp-server rest runtime tools

Last synced: about 1 month ago
JSON representation

Factorly is a local runtime for agent tool chains. It manages tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything. Your agent sees workflows, tools, and data. Secrets stay secret.

Awesome Lists containing this project

README

          

```
░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
```

# Factorly

[![Release](https://img.shields.io/badge/Release-v0.17.1-blue?logo=github)](https://github.com/factorly-dev/factorly/releases)
[![Go](https://img.shields.io/badge/Go-1.24+-00ADD8?logo=go&logoColor=white)](https://go.dev)
[![License: GPL-3.0](https://img.shields.io/badge/License-GPL--3.0-green.svg)](LICENSE)
[![CI](https://img.shields.io/badge/CI-passing-brightgreen?logo=github)](https://github.com/factorly-dev/factorly/actions/workflows/ci.yml)
[![npm](https://img.shields.io/npm/v/factorly)](https://www.npmjs.com/package/factorly)
[![PyPI](https://img.shields.io/pypi/v/factorly)](https://pypi.org/project/factorly/)
[![MCP](https://img.shields.io/badge/MCP-compatible-8A2BE2)](https://modelcontextprotocol.io)
[![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](docs/)

**Build what your agent can do.**

Define tools, compose workflows, test and run them.
MCP servers, REST APIs, and CLI commands in one config, one UI, one audit log.

Factorly is a local runtime for agent tool chains. It manages tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything. Your agent sees workflows, tools, and data. Secrets stay secret.

![Screenshot of Factorly UI](docs/images/screenshot-rm.png)

---

## Install

Install with your package manager of choice:

```bash
brew install factorly-dev/tap/factorly
# or: npm install -g factorly
# or: pip install factorly
# or: go install github.com/factorly-dev/factorly@latest
```

## Quick Start

Then, define your tools, secure your credentials, and sync with your agent:

```bash
# 1. Configure your tools or install a blueprint (41 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
factorly init
factorly blueprint install github

# 2. Store your credentials in the encrypted vault
factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx

# 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
factorly sync

# 3. Optional, start the UI
factorly ui
```

Your agent connects to Factorly as a single MCP server or CLI and sees every tool you've configured. Credentials never leave the vault.

---

## What It Does

**Define** — one config, every protocol, [40+ blueprints](docs/blueprints.md) included

**Test** — Try tools in the [UI](docs/ui.md), see the response, iterate before giving your agent access

**Compose** — [workflows](docs/workflows.md) with per-step policies, deterministic sequences

**Govern** — [vault](docs/vault.md), [policies](docs/examples/10-deny-dangerous-operations.md), [audit log](docs/logging.md). Built in, not bolted on.

```
┌────────────┐ ┌────────────┐ ┌────────────┐
│ │ │ │ │ │
│ Your Agent │──────▶│ Factorly │──────▶│ Your Tools │
│ │ │ │ │ │
└────────────┘ └────────────┘ └────────────┘
Sees: Vault REST APIs
- tool names Governance CLI commands
- workflows Audit log MCP servers
- data Rate limits

Never sees:
- API keys
- tokens
- credentials
```

---

## Docs

- [Getting Started](docs/getting-started.md)
- [Configuration](docs/config-reference.md)
- [CLI Reference](docs/cli-reference.md)
- [Web UI](docs/ui.md)
- [Workflows](docs/workflows.md)
- [Expressions](docs/expressions.md)
- [Output Filters](docs/filters.md)
- [Blueprints](docs/blueprints.md)
- [Vault](docs/vault.md)
- [OAuth](docs/oauth.md)
- [Logging](docs/logging.md)
- [OpenAPI Import](docs/openapi-import.md)
- [Examples](docs/examples/)

## License

[GPL-3.0](LICENSE)