🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

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

latest
Source
npmnpm
Version
0.5.1
Version published
Weekly downloads
8
-75%
Maintainers
1
Weekly downloads
 
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 16 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts