Delentia OS Developer PortalDelentia OS Developer Portal
  • Pricing
  • Documentation
  • API Reference
Information
Other endpoints
    Delentia Sovereign AI Ecosystem SSE MCP Transport and Health CheckgetDelentia Sovereign AI Ecosystem Unified Streamable HTTP MCP GatepostGet Active Enterprise Custom PolicygetConfigure Enterprise Custom Policy for Parameter ApostDelentia FDIA Security Evaluation GatepostDelentia RCT-7 Reverse Thinking PipelinepostDelentia Delta Context Compression EnginepostDelentia JITNA Multi-Agent Swarm Orchestratorpost
powered by Zuplo
Delentia OS MCP Ecosystem API
Delentia OS MCP Ecosystem API

Other endpoints


Delentia Sovereign AI Ecosystem SSE MCP Transport and Health Check

GET
https://delentia-gateway-main-c7624a5.zuplo.app
/mcp

Server-Sent Events connection and health discovery endpoint.

Delentia Sovereign AI Ecosystem SSE MCP Transport and Health Check › Headers

Authorization
​string · required

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Delentia Sovereign AI Ecosystem SSE MCP Transport and Health Check › Responses

Server-Sent Events Stream or Server Metadata

No data returned
GET/mcp
curl https://delentia-gateway-main-c7624a5.zuplo.app/mcp \ --header 'Authorization: Bearer <token>'
Example Responses
No example specified for this content type

Delentia Sovereign AI Ecosystem Unified Streamable HTTP MCP Gate

POST
https://delentia-gateway-main-c7624a5.zuplo.app
/mcp

Enterprise Paywall & Gateway for all 5 Delentia MCP Sovereign Tools. Verifies Zuplo API key and monetized tier, then securely forwards to Cloudflare Worker backend with internal secret.

Delentia Sovereign AI Ecosystem Unified Streamable HTTP MCP Gate › Headers

Authorization
​string · required

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Delentia Sovereign AI Ecosystem Unified Streamable HTTP MCP Gate › Request Body

Delentia Sovereign AI Ecosystem Unified Streamable HTTP MCP Gate › Responses

MCP JSON-RPC response

No data returned
POST/mcp
curl https://delentia-gateway-main-c7624a5.zuplo.app/mcp \ --request POST \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <token>' \ --data '{}'
Example Request Body
{}
json
Example Responses
No example specified for this content type

Get Active Enterprise Custom Policy

GET
https://delentia-gateway-main-c7624a5.zuplo.app
/policy

Retrieves the currently active governance rules applied to parameter A.

Get Active Enterprise Custom Policy › Responses

200

Active enterprise policy definition

No data returned
GET/policy
curl https://delentia-gateway-main-c7624a5.zuplo.app/policy \ --header 'Authorization: Bearer <token>'
Example Responses
No example specified for this content type

Configure Enterprise Custom Policy for Parameter A

POST
https://delentia-gateway-main-c7624a5.zuplo.app
/policy

Sets or updates the active enterprise safety governance policy (Forbidden patterns, RBAC, Dual sign-off, Thresholds) stored in Durable Objects.

Configure Enterprise Custom Policy for Parameter A › Request Body

policy_id
​string · required
policy_name
​string · required
blocked_action_patterns
​string[]
allowed_roles
​object
custom_safety_threshold
​number
require_human_dual_signoff
​string[]

Configure Enterprise Custom Policy for Parameter A › Responses

200

Policy configured successfully

No data returned
POST/policy
curl https://delentia-gateway-main-c7624a5.zuplo.app/policy \ --request POST \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <token>' \ --data '{ "policy_id": "corp_policy_strict", "policy_name": "Strict Enterprise Governance", "blocked_action_patterns": [ "*drop*", "*truncate*", "*wipe*", "*export_secrets*" ], "allowed_roles": { "admin": [ "*" ], "developer": [ "read_*", "write_code" ], "junior_dev": [ "read_*" ] }, "custom_safety_threshold": 0.85, "require_human_dual_signoff": [ "deploy_prod", "rotate_master_key" ] }'
Example Request Body
{ "policy_id": "corp_policy_strict", "policy_name": "Strict Enterprise Governance", "blocked_action_patterns": [ "*drop*", "*truncate*", "*wipe*", "*export_secrets*" ], "allowed_roles": { "admin": [ "*" ], "developer": [ "read_*", "write_code" ], "junior_dev": [ "read_*" ] }, "custom_safety_threshold": 0.85, "require_human_dual_signoff": [ "deploy_prod", "rotate_master_key" ] }
json
Example Responses
No example specified for this content type

Delentia FDIA Security Evaluation Gate

POST
https://delentia-gateway-main-c7624a5.zuplo.app
/mcp/fdia

Evaluates an action through F = (D^I) * A. If authorization is absent (A=0), execution is mathematically preempted (F=0).

Delentia FDIA Security Evaluation Gate › Headers

Authorization
​string · required

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Delentia FDIA Security Evaluation Gate › Request Body

data_quality
​number · min: 0 · max: 1 · required

D (Data Quality Context)

action_name
​string · required

Target tool or operation to audit

intent_precision
​number · min: 1

I (Intent Precision Exponent)

Default: 1
authorized
​boolean

A (Architect Gate / Authorization status)

Default: true
caller_context
​string

Delentia FDIA Security Evaluation Gate › Responses

FDIA Evaluation Verdict and Safety Digest

future_score
​number
verdict
​string
authorized
​boolean
audit_digest
​string
POST/mcp/fdia
curl https://delentia-gateway-main-c7624a5.zuplo.app/mcp/fdia \ --request POST \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <token>' \ --data '{ "data_quality": 0.95, "intent_precision": 1.2, "authorized": true, "action_name": "drop_customer_database", "caller_context": "Agent role: junior_coder" }'
Example Request Body
{ "data_quality": 0.95, "intent_precision": 1.2, "authorized": true, "action_name": "drop_customer_database", "caller_context": "Agent role: junior_coder" }
json
Example Responses
{ "future_score": 0.9405, "verdict": "AUTHORIZED", "authorized": true, "audit_digest": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" }
json
application/json

Delentia RCT-7 Reverse Thinking Pipeline

POST
https://delentia-gateway-main-c7624a5.zuplo.app
/mcp/rct7

Enforces the authentic 7-stage mental OS (Observe, Analyze, Deconstruct, Reverse Reasoning, Identify Core Intent, Reconstruct, Compare with Intent).

Delentia RCT-7 Reverse Thinking Pipeline › Headers

Authorization
​string · required

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Delentia RCT-7 Reverse Thinking Pipeline › Request Body

problem_statement
​string · required
environment_context
​string
target_desired_outcome
​string

Delentia RCT-7 Reverse Thinking Pipeline › Responses

Complete 7-Stage Reasoning Structure

problem_statement
​string
​object[]
synthesized_solution
​string
POST/mcp/rct7
curl https://delentia-gateway-main-c7624a5.zuplo.app/mcp/rct7 \ --request POST \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <token>' \ --data '{ "problem_statement": "Design a fault-tolerant multi-agent payment pipeline", "environment_context": "High concurrency banking transactions", "target_desired_outcome": "Zero double-spending with sub-50ms latency" }'
Example Request Body
{ "problem_statement": "Design a fault-tolerant multi-agent payment pipeline", "environment_context": "High concurrency banking transactions", "target_desired_outcome": "Zero double-spending with sub-50ms latency" }
json
Example Responses
{ "problem_statement": "problem_statement", "stages": [ {} ], "synthesized_solution": "synthesized_solution" }
json
application/json

Delentia Delta Context Compression Engine

POST
https://delentia-gateway-main-c7624a5.zuplo.app
/mcp/delta

Compresses verbose logs and conversations into state diffs, reducing token/VRAM overhead by up to 74.2% - 91.5%.

Delentia Delta Context Compression Engine › Headers

Authorization
​string · required

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Delentia Delta Context Compression Engine › Request Body

raw_context
​string · required
intent_focus
​string
aggressive_mode
​boolean
Default: false

Delentia Delta Context Compression Engine › Responses

Compressed Delta Stream and Metrics

original_char_count
​integer
compressed_char_count
​integer
reduction_percentage
​number
compressed_delta_text
​string
POST/mcp/delta
curl https://delentia-gateway-main-c7624a5.zuplo.app/mcp/delta \ --request POST \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <token>' \ --data '{ "raw_context": "Long 5000-line server logs or 25-turn chat history...", "intent_focus": "Database connection timeouts", "aggressive_mode": false }'
Example Request Body
{ "raw_context": "Long 5000-line server logs or 25-turn chat history...", "intent_focus": "Database connection timeouts", "aggressive_mode": false }
json
Example Responses
{ "original_char_count": 0, "compressed_char_count": 0, "reduction_percentage": 74.2, "compressed_delta_text": "compressed_delta_text" }
json
application/json

Delentia JITNA Multi-Agent Swarm Orchestrator

POST
https://delentia-gateway-main-c7624a5.zuplo.app
/mcp/jitna

Dispatches tasks into JITNA packets [I, D, Delta, A, R, M] across 1+4 Pillars LoRA (Router, Guardian, Executor, Scribe).

Delentia JITNA Multi-Agent Swarm Orchestrator › Headers

Authorization
​string · required

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Delentia JITNA Multi-Agent Swarm Orchestrator › Request Body

objective
​string · required
data_readiness
​number
Default: 80
target_pillar
​string · enum
Enum values:
auto
router
guardian
executor
scribe
Default: auto

Delentia JITNA Multi-Agent Swarm Orchestrator › Responses

Coordinated JITNA Packet and LoRA Swarm Assignment

jitna_packet
​object
​object[]
POST/mcp/jitna
curl https://delentia-gateway-main-c7624a5.zuplo.app/mcp/jitna \ --request POST \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <token>' \ --data '{ "objective": "Deploy hardened microservice with automated regression suite", "data_readiness": 80, "target_pillar": "auto" }'
Example Request Body
{ "objective": "Deploy hardened microservice with automated regression suite", "data_readiness": 80, "target_pillar": "auto" }
json
Example Responses
{ "jitna_packet": {}, "assigned_pillars": [ {} ] }
json
application/json