You're looking at a full enterprise automation platform exposed as an MCP server. It ships prebuilt LangGraph agents for finance, HR, marketing, and ops workflows, plus 1000+ integrations through Composio and native connectors for Jira, HubSpot, GitHub, Indian tax (GSTN), Tally, and account aggregator banking APIs. The agents don't just chat, they execute: create Jira tickets, process invoices with three-way matching, run payroll calculations, reconcile bank statements, and trigger campaign workflows. It includes CFO and CMO dashboards, natural language querying, multi-company support for CA firms, scheduled PDF reports, and human-in-the-loop approvals. There's also a gated commerce sales agent for Grantex catalog search and checkout workflows, currently in mock mode. Reach for this when you want Claude to orchestrate real enterprise back-office work, not just answer questions.
AgenticOrg is an Apache-2.0 enterprise AI agent platform for building, running, and governing agent workflows across finance, HR, marketing, operations, back office, communications, and bounded agentic-commerce use cases.
Website | Application | Playground | Documentation | Security policy
Live product totals and the deployed product version are published by the public product facts endpoint:
GET https://app.agenticorg.ai/api/v1/product-facts
The response contains version, agent_count, connector_count, and tool_count. Do not copy those values into documentation, page copy, or tests: they are computed from runtime registries and can change independently of a documentation release. The version declared for source builds is in pyproject.toml.
Billing limits and list prices come from core/billing/catalog.py. Production deployment behavior comes from scripts/deploy_cloud_run.sh.
| Area | Current implementation |
|---|---|
| Agent runtime | FastAPI and LangGraph runtime with model routing, tool invocation, confidence handling, retry policy, and persisted execution state |
| Agent authoring | Built-in agent definitions, custom agents, prompt templates, organization hierarchy, and a no-code UI |
| Workflows | Workflow definitions, runs, schedules, conditions, approvals, and audit events |
| Governance | Tenant and role boundaries, scoped tools, human-in-the-loop queues, shadow evaluation, policy checks, and kill-switch patterns |
| Integrations | Native connector registry plus optional integration gateways; actual availability depends on credentials, scopes, provider access, and tenant configuration |
| Knowledge and channels | Knowledge ingestion/search, reports, notifications, voice, RPA, and other channel features behind their required services and configuration |
| Developer access | REST API, Python SDK and CLI, TypeScript SDK, MCP server, and A2A discovery/task surfaces |
| Commerce | Merchant-scoped Shopify read-only sync, OACP artifact intake/cache, buyer-safe answers, public catalog surfaces, and prepared provider or POS handoffs |
| Operations | PostgreSQL, Redis, object storage, observability hooks, migrations, security checks, and Cloud Run deployment tooling |
A source definition is not evidence that a specific tenant has connected the provider or enabled write access. Connector actions still require approved credentials, scopes, policies, and provider availability.
Browser or SDK
|
v
React 19 application / FastAPI API
|
+-- Authentication, tenant context, roles, and scopes
+-- Agent registry and LangGraph execution
+-- Workflow engine, schedules, and approval queues
+-- Tool gateway and connector adapters
+-- Audit, evaluation, observability, and cost records
|
+-- PostgreSQL / Cloud SQL
+-- Redis
+-- GCS or compatible object storage
+-- Configured LLM and external service providers
The managed production path runs separate API and UI services on Google Cloud Run. Artifact Registry images are commit-pinned, migrations can run before rollout, and traffic movement is explicit. Legacy Kubernetes material is not the current production path.
AgenticOrg owns the buyer and seller agent runtime around OACP-backed commerce. Grantex owns trust authority, protocol and policy governance, canonical artifacts, artifact verification, and adapter authority. Shopify and merchant systems remain operational sources of record. Pine Labs Plural/P3P, banks, POS systems, and payment providers own their execution rails.
The current supported source path is:
Start with docs/oacp/README.md and the runtime launch closure PRD.
The UI currently uses React 19. Dependency versions are declared in pyproject.toml and ui/package.json.
Clone and configure the repository:
git clone https://github.com/mishrasanjeev/agentic-org.git
cd agentic-org
cp .env.example .env
Install the platform and development extras:
python -m venv .venv
python -m pip install -e ".[v4,dev]"
Start local dependencies:
docker compose up -d postgres redis minio
Run migrations and the API:
python scripts/alembic_migrate.py
uvicorn api.main:app --host 0.0.0.0 --port 8000 --reload
In another terminal, install and run the UI:
cd ui
npm ci
npm run dev
Do not use example secrets in staging or production. Configure real secrets through the approved secret-management path.
Optional Compose profiles include local CPU/GPU model runtimes and supporting RAG or voice services. Review docker-compose.yml before enabling a profile because hardware, images, and credentials vary by feature.
All application API routes are mounted below /api/v1.
| Surface | Purpose | Authentication posture |
|---|---|---|
| GET /api/v1/health | Service health | Public |
| GET /api/v1/product-facts | Live version and registry totals | Public |
| GET /api/v1/a2a/agent-card | A2A discovery card | Public |
| GET /api/v1/a2a/.well-known/agent.json | A2A discovery alias | Public |
| GET /api/v1/mcp/tools | MCP-compatible agent discovery | Public |
| Agent, workflow, tool, billing, and commerce mutations | Tenant operations | Authenticated and scoped |
Interactive OpenAPI documentation is available from the API service when enabled by the deployment. The detailed route inventory is maintained in docs/route_inventory.json, and narrative API documentation is in docs/api-reference.md.
See sdk/README.md.
pip install agenticorg
agenticorg agents list
agenticorg a2a card
The SDK supports authenticated platform operations exposed by its client. Server features may require a newer deployment than the installed client, so consumers should check package and server release notes.
See sdk-ts/README.md.
npm install agenticorg-sdk
See mcp-server/README.md.
npx agenticorg-mcp-server
The MCP package exposes governed AgenticOrg agent and commerce discovery surfaces. It does not grant an MCP client unrestricted access to every connector action.
The hosted plan source of truth is the typed PUBLIC_PLAN_CATALOG in core/billing/catalog.py. A compatibility view in core/billing/limits.py is derived from that catalog.
| Plan | USD list price | INR list price | Agents | Runs | Storage |
|---|---|---|---|---|---|
| Free | $0/month | INR 0/month | 3 | 1,000/month | 1 GB |
| Pro | $2/month | INR 9,999/month | 15 | 10,000/month | 50 GB |
| Enterprise | $499/month | INR 49,999/month | Unlimited | Unlimited | Unlimited |
The repository is Apache-2.0 licensed. Infrastructure, model-provider, external API, payment-provider, and support costs are separate from the software license.
The codebase includes:
Production security depends on correct deployment configuration, key custody, provider settings, tenant policies, and operational monitoring. Report vulnerabilities through SECURITY.md; do not open a public issue for a suspected vulnerability.
Backend:
pytest
Focused backend checks can be run by directory or file:
pytest tests/unit
pytest tests/regression
pytest tests/connector_harness
Frontend:
cd ui
npm ci
npm run lint
npm run typecheck
npm test
npm run build
Browser tests:
cd ui
npx playwright test
Playwright suites require the target application and any documented test credentials or fixtures. CI workflow files under .github/workflows are the source of truth for which suites run on each event; the README does not claim that every E2E suite runs on every push.
The current managed rollout helper targets Google Cloud Run:
bash scripts/deploy_cloud_run.sh --sha <commit-sha> --yes
Useful modes include:
bash scripts/deploy_cloud_run.sh --sha <commit-sha> --skip-build --with-migrations --yes
bash scripts/deploy_cloud_run.sh --sha <commit-sha> --skip-build --traffic preserve --yes
bash scripts/deploy_cloud_run.sh --sha <commit-sha> --dry-run
The helper stages revision-specific images, verifies image and commit metadata, supports migration-first deployment, probes health, and moves traffic according to the selected mode. Read the script help and docs/deployment.md before using production credentials.
Default script configuration places Cloud Run services in asia-southeast1 and Artifact Registry in asia-south1. Both are configurable. Older Kubernetes material is retained only for historical or alternative deployment context.
api/ FastAPI application and versioned routes
auth/ Authentication and authorization middleware
core/ Agent runtime, models, billing, commerce, and orchestration
connectors/ Native connector implementations and framework
workflows/ Workflow definitions and runtime helpers
sdk/ Python SDK and CLI
sdk-ts/ TypeScript SDK
mcp-server/ MCP server package
ui/ React 19 application and public web assets
migrations/ Database migrations
observability/ Metrics, tracing, and logging helpers
tests/ Backend unit, regression, security, and integration tests
ui/e2e/ Playwright browser tests
docs/ Product, architecture, operations, and protocol documentation
scripts/ Validation, migration, release, and deployment helpers
The public site includes conventional search and answer-engine discovery assets:
The two llms files are generated by ui/scripts/generate-llms.mjs. They are supplemental machine-readable navigation documents, not replacements for crawlable HTML, accurate structured data, robots controls, or the sitemap.
To refresh the tracked sitemap and llms copies plus route JSON-LD CSP hashes:
cd ui
npm run seo:sync
npm run seo:verify
Some older reports describe prior architecture or point-in-time validation. Prefer current code, canonical runbooks, and live product facts when a historical document conflicts with the running system.
The current workflow, gaps, acceptance gates, and staged delivery sequence are defined by the readiness documents above. The Capability Readiness Register is the canonical promotion ledger: a capability may be described as available only when its required evidence and review state permit that claim. Automated production deployment remains hard-disabled in the workflow source, so production rollout follows the reviewed Cloud Run runbook until that automation is explicitly enabled.
Read CONTRIBUTING.md and CODE_OF_CONDUCT.md. Keep pull requests focused, add tests for behavior changes, and update generated public documentation when a source-of-truth field changes.
AgenticOrg is licensed under the Apache License 2.0.
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent