oci ghcr.io/nhantour/genie-locker-mcp:0.2.0stdioupdated 29d ago
GenieLocker gives an AI agent a private OpenAI-compatible Qwen2.5-7B endpoint by the minute. The locker is quality-gated before the paid duration begins and destroyed automatically at expiry.
What can you do with GenieLocker?
GenieLocker
GenieLocker gives an AI agent a private OpenAI-compatible Qwen2.5-7B endpoint by the minute. The locker is quality-gated before the paid duration begins and destroyed automatically at expiry.
Current commercial boundary
- One commercial resident SKU:
l16-resident - Prepaid credits: live
- Direct per-locker x402 settlement: off / fail-closed
- One completed locker in the public status counter is an operator canary, not a customer
Trust the live API over copied documentation:
curl -s https://genie.locker/api/status
curl -s 'https://genie.locker/api/quote?envelope=l16&placement=resident&minutes=10'
Agent integration
- MCP server:
io.github.nhantour/genie-locker - Full purchase and safety procedure: https://genie.locker/agent.md
- OpenAPI 3.1: https://genie.locker/openapi.json
- Machine-readable site index: https://genie.locker/llms.txt
- Install the agent skill after reviewing the script:
curl -sL https://genie.locker/skill.sh | sh
The first step can be a free trial credit allocation. No wallet or purchase is created by reading this repository or installing the skill.
MCP connector
The public MCP connector is deliberately read-only. It exposes five tools for service status, commercial inventory, live quotes, recipe search, and credit pricing. It cannot create accounts, reserve GPUs, buy credits, create lockers, or send data to an inference model.
Run it from source:
npm install
npm start
Or, after the public image is available:
docker run --rm -i ghcr.io/nhantour/genie-locker-mcp:0.2.0
Client configuration:
{
"mcpServers": {
"genie-locker": {
"command": "docker",
"args": ["run", "--rm", "-i", "ghcr.io/nhantour/genie-locker-mcp:0.2.0"]
}
}
}
The connector source in this repository is MIT-licensed under LICENSE. The
private broker implementation is not included in this repository or license.
Genie Guard SDK
The package also includes a framework-neutral, in-process spend boundary for async JavaScript/TypeScript tools:
npm install https://github.com/nhantour/genie-locker/releases/download/guard-v0.2.0/nhantour-genie-locker-mcp-0.2.0.tgz
It is also published as @nhantour/genie-locker-mcp@0.2.0 on GitHub
Packages for clients already authenticated to npm.pkg.github.com.
import { createSpendGuard } from '@nhantour/genie-locker-mcp/guard';
const guard = createSpendGuard({ limitUsd: 100, perCallLimitUsd: 5 });
const safeSearch = guard.wrap(paidSearch, { estimateCostUsd: () => 0.02 });
Reservations are counted before the tool starts, so concurrent calls cannot all
pass against the same remaining budget. Failed calls release their reservation;
successful calls record the estimated cost or an actualCostUsd returned by
your adapter. Day, UTC-month, and all-time windows are supported.
This is a local SDK guardrail, not a managed wallet, payment processor, durable ledger, multi-signature approval system, or substitute for provider-side spend limits. Its state resets with the process. Put the final hard boundary at the wallet or payment provider whenever the wrapped tool can move real money.
The matching Python wheel and source archive are published on the
guard-v0.2.0 GitHub release.
A matching dependency-free Python package lives in python/.
Security reports should use the repository's private security advisory form.
Minimal flow
# 1. Create a trial account and save the returned gk_... key securely.
curl -s -X POST https://genie.locker/api/credits/trial
# 2. Request a ten-minute locker with a stable idempotency key.
curl -s -X POST https://genie.locker/api/lockers \
-H 'authorization: Bearer gk_REDACTED' \
-H 'idempotency-key: your-stable-order-id' \
-H 'content-type: application/json' \
-d '{"envelope":"l16","placement":"resident","minutes":10}'
The order is asynchronous. Poll the returned status_url with the same API key
until the state is live; only then does the paid duration begin.
Copyright © Intelix Systems LLC. This repository documents the public service; it does not grant a license to the private broker implementation.
Install
Add GenieLocker to your client. Pick the one you use.
claude mcp add ghcr-io-nhantour-genie-locker-mcp-0-2-0 -- docker run -i --rm ghcr.io/nhantour/genie-locker-mcp:0.2.0codex mcp add ghcr-io-nhantour-genie-locker-mcp-0-2-0 -- docker run -i --rm ghcr.io/nhantour/genie-locker-mcp:0.2.0amp mcp add ghcr-io-nhantour-genie-locker-mcp-0-2-0 -- docker run -i --rm ghcr.io/nhantour/genie-locker-mcp:0.2.0{
"mcpServers": {
"ghcr-io-nhantour-genie-locker-mcp-0-2-0": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nhantour/genie-locker-mcp:0.2.0"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ghcr-io-nhantour-genie-locker-mcp-0-2-0": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nhantour/genie-locker-mcp:0.2.0"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ghcr-io-nhantour-genie-locker-mcp-0-2-0","command":"docker","args":["run","-i","--rm","ghcr.io/nhantour/genie-locker-mcp:0.2.0"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ghcr-io-nhantour-genie-locker-mcp-0-2-0": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nhantour/genie-locker-mcp:0.2.0"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ghcr-io-nhantour-genie-locker-mcp-0-2-0": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nhantour/genie-locker-mcp:0.2.0"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ghcr-io-nhantour-genie-locker-mcp-0-2-0": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nhantour/genie-locker-mcp:0.2.0"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ghcr-io-nhantour-genie-locker-mcp-0-2-0": {
"type": "local",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nhantour/genie-locker-mcp:0.2.0"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ghcr-io-nhantour-genie-locker-mcp-0-2-0": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nhantour/genie-locker-mcp:0.2.0"
]
}
}
}
}Add to your Zed `settings.json`.
docker run -i --rm ghcr.io/nhantour/genie-locker-mcp:0.2.0Run `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 22 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.2.0Latest | Aug 9, 2026 |
| 0.1.0 | Aug 3, 2026 |