New:Socket for Asana Is Now Available.Learn more
Get Started

upjack

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

upjack

Schema-driven entity management for AI-native applications

Source
npmnpm
Version
0.5.0
Version published
Maintainers
1
Created
Source

upjack

Schema-driven entity management for AI-native applications. TypeScript edition.

npm install upjack
import { UpjackApp } from "upjack";

const app = UpjackApp.fromManifest("manifest.json");

// Typed CRUD + search for every entity you define
const contact = app.createEntity("contact", { name: "Alice", email: "alice@example.com" });
const results = app.searchEntities("contact", { query: "alice" });
// One function call → full MCP server
import { createServer } from "upjack/server";

const server = createServer("manifest.json");
// Tools: create_contact, get_contact, update_contact, list_contacts, search_contacts, delete_contact

See the main README for full documentation.

Development

npm install
make check    # format + lint + typecheck + test
make build    # produces dist/

License

Apache 2.0

Keywords

upjack

FAQs

Package last updated on 09 Apr 2026

Related posts