revisium

mcp
Guvenlik Denetimi
Uyari
Health Uyari
  • License — License: Apache-2.0
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 5 GitHub stars
Code Uyari
  • process.env — Environment variable access in .github/scripts/apply-version-metadata.mjs
  • process.env — Environment variable access in .github/scripts/create-github-app-commit.mjs
  • network request — Outbound network request in .github/scripts/create-github-app-commit.mjs
  • process.env — Environment variable access in .github/scripts/validate-version-metadata.mjs
  • process.env — Environment variable access in .github/workflows/deploy.yml
  • fs module — File system access in .github/workflows/release-train.yml
Permissions Gecti
  • Permissions — No dangerous permissions requested
Purpose
This tool is an unopinionated data platform and MCP server that provides structured JSON data storage with referential integrity. It allows developers to define custom schemas and automatically generates REST, GraphQL, and MCP APIs with Git-like versioning.

Security Assessment
Overall risk: Low. The server is designed to handle structured data and executes locally by default. The automated scan revealed no hardcoded secrets, dangerous permission requests, or suspicious shell command executions. The flagged warnings are strictly limited to GitHub Actions CI/CD scripts (workflows, environment variable access, and network requests used for releases). The actual application source code is clean of these alerts. Standard caution should always be applied when connecting data services to external networks or enabling authentication.

Quality Assessment
The project is maintained under the standard Apache-2.0 license and is actively updated, with its latest repository push occurring today. It features comprehensive documentation and uses a reliable local development setup via `npx` with an embedded database. However, it currently suffers from very low community visibility, having only 5 GitHub stars. Because it is a new or niche project, it likely has not undergone broad public security testing or widespread enterprise adoption.

Verdict
Safe to use, but keep in mind that the project is very new and has not yet been widely tested by the broader developer community.
SUMMARY

Unopinionated data platform with referential integrity. Your schema. Your data. Full control.

README.md

Revisium

Unopinionated data platform with referential integrity.

Your schema. Your data. Full control.

License
Docker
Quality Gate

JSON Schema flexibility + Foreign Keys reliability.
Git-like versioning: branches, revisions, drafts.
Schema evolution with data migrations.
Auto-generated GraphQL + REST APIs.

Website · Docs · Cloud · Docker Hub

What is Revisium

Revisium is an unopinionated microservice for structured JSON data with relational integrity, schema enforcement, auto-generated APIs, Git-like versioning, and a built-in Admin UI — from schema design to change review. The platform does not impose a fixed data model — schema is designed to fit the project's needs, from flat key-value to deeply nested hierarchies.

Managed through Admin UI, GraphQL API, REST API, MCP Protocol, or any combination.

rev

Key Features

# Feature Why it matters
1 JSON Schema Any structure — primitives, objects, arrays, any nesting depth
2 Foreign Keys Referential integrity — validation on write, cascade rename, can't delete if referenced
3 Computed Fields x-formula expressions — 40+ functions, aggregations over arrays
4 Files S3 file attachments at any schema level — images, documents, galleries
5 Versioning Branches, revisions, drafts — full history, diff, rollback
6 Schema Evolution Change types, add/remove fields — existing data transforms automatically
7 Migrations CLI Auto-generated migrations, portable across branches and instances via revisium-cli
8 APIs System API (GraphQL, REST, MCP) + auto-generated typed APIs from your schema
9 Admin UI Visual schema editor, table views with filters/sorts, diff viewer, change review
10 Self-Hosted Apache 2.0, your infrastructure, no vendor lock-in

Quick Start

Cloud

Try without installing — cloud.revisium.io

Standalone (no dependencies)

npx @revisium/standalone@latest

Open http://localhost:9222 — no auth by default, --auth to enable (login: admin / admin).

Embedded PostgreSQL, zero configuration. Perfect for local development and AI agent integrations.

See @revisium/standalone README for all CLI options, MCP setup, and authentication details.

For production deployment (Docker Compose, Kubernetes), see Deployment Options.

Use Cases

Headless CMS

Content managed in Revisium (Admin UI or API), consumed by frontends via auto-generated REST/GraphQL. Branches for staging/production, drafts for editorial workflow.

Dictionary / Master Data

Single source of truth for reference data (currencies, categories, product specs) shared across microservices. Foreign keys guarantee consistency.

Configuration Store

Application settings, feature flags, pricing rules as versioned JSON. Draft → review → commit workflow. Branches for dev/staging/prod environments.

AI Agent Memory

Structured memory for AI agents (Claude Code, Cursor, custom). Typed schemas, version control, rollback on corruption. Human review of agent-written data via Admin UI. MCP Protocol support built-in.

Game Data & Complex Domains

Items, characters, quests with rich relationships. Schema validation, computed fields (40+ formula functions), file attachments via S3.

Data Model

Organization
  └── Project
        └── Branch (master, staging, dev)
              └── Revision (immutable snapshot) / Draft (WIP)
                    └── Table (JSON Schema)
                          └── Row (id + data)

Example: e-commerce with foreign keys and computed fields

Table categories — row id: "electronics"

{
  "name": "Electronics",
  "description": "Smartphones, laptops, accessories"
}

Table products — row id: "iphone-16"

{
  "title": "iPhone 16 Pro",
  "category": "electronics",         // ← FK → categories
  "price": 999,
  "quantity": 50,
  "total": 49950,                    // ← computed: price * quantity
  "inStock": true,                   // ← computed: quantity > 0
  "specs": {
    "weight": 199,
    "tags": ["5G", "USB-C"]
  },
  "relatedProducts": ["macbook-m4"]  // ← array of FK → products
}

Example: GraphQL query on auto-generated API

query {
  products(
    where: { category: { eq: "electronics" } }
    orderBy: { price: DESC }
    first: 10
  ) {
    edges {
      node {
        id
        title
        price
        category {
          name  # Auto-resolved via foreignKey
        }
      }
    }
  }
}

Architecture

┌─────────────────────────────────────────────────────────┐
│                   revisium (this repo)                  │
│              All-in-one self-hosted package             │
├─────────────────┬─────────────────┬─────────────────────┤
│  @revisium/core │ @revisium/admin │ @revisium/endpoint  │
│  Backend API    │  Web UI         │  API generator      │
├─────────────────┴─────────────────┴─────────────────────┤
│                     API Layer                           │
├───────────┬───────────┬───────────┬─────────────────────┤
│  GraphQL  │  REST API │    MCP    │   Generated APIs    │
│           │           │           │  (GraphQL + REST)   │
├───────────┴───────────┴───────────┴─────────────────────┤
│                  Infrastructure                         │
├───────────┬───────────┬───────────┬─────────────────────┤
│ PostgreSQL│   Redis   │    S3     │       SMTP          │
│ (required)│ (optional)│ (optional)│     (optional)      │
└───────────┴───────────┴───────────┴─────────────────────┘

Ecosystem

Platform

Package Description Quality
revisium All-in-one self-hosted deployment Quality Gate
@revisium/core Backend API — GraphQL, REST, MCP Quality Gate
@revisium/admin Web UI — schema editor, data management, diff viewer Quality Gate
@revisium/endpoint Auto-generated GraphQL + REST APIs Quality Gate

Libraries

Package Description Quality
@revisium/schema-toolkit JSON Schema engine — validation, diff, patch, migrations Quality Gate
@revisium/schema-toolkit-ui Schema / Row / Table editors for React Quality Gate
@revisium/formula Formula expression engine — 40+ built-in functions Quality Gate
@revisium/prisma-pg-json PostgreSQL JSON query builder for Prisma Quality Gate
@revisium/client TypeScript API client Quality Gate

Tools & Integrations

Package Description Quality
@revisium/mcp-memory MCP server for AI agent memory alpha Quality Gate
revisium-cli Schema migration CLI — save & apply across environments Quality Gate

Dependency Graph

revisium (self-hosted)
├── @revisium/core
│   ├── @revisium/schema-toolkit
│   │   └── @revisium/formula
│   └── @revisium/prisma-pg-json
├── @revisium/admin
│   ├── @revisium/schema-toolkit-ui
│   │   ├── @revisium/schema-toolkit
│   │   └── @revisium/formula
│   └── @revisium/formula
└── @revisium/endpoint
    └── @revisium/schema-toolkit

@revisium/mcp-memory ──► @revisium/client
revisium-cli ──► @revisium/client + @revisium/schema-toolkit

Configuration

See ENV.md for all environment variables.

Deployment Options

Option Description
Docker Compose Full stack with PostgreSQL — recommended for quick start
Docker Single container, bring your own PostgreSQL
Kubernetes Helm chart, horizontal scaling
Cloud Managed SaaS — cloud.revisium.io

Requirements

  • PostgreSQL 14+
  • Node.js 20+ (for standalone and CLI only)
  • S3-compatible storage (optional, for file uploads)
  • Redis (optional, for caching and multi-pod sync)

License

Apache 2.0 — see LICENSE. Some packages (e.g. @revisium/core) include enterprise features under the Revisium Enterprise License in their ee/ directories.

Yorumlar (0)

Sonuc bulunamadi