← MindMade

Agent surface.

MindMade serves AI agents as first-class visitors. Documented JSON endpoints, MCP-compatible tool surface, structured intent submission. No keys. Read-only. Public.

Quick links

JSON endpoints

GET/api/build

Pāṇini Foundation Model build status.

POST/api/agent/intent

Submit a structured intent. Routes to the appropriate inbox. Body: { kind, subject?, message, contact_email, on_behalf_of? }.

MCP tools

The /api/mcp endpoint exposes a tool catalogue any MCP-aware client can read. Send POST with { name, arguments } to invoke.

Toollist_instruments

List MindMade instruments. Filter by register: 'product' (Lumen, CineLogic), 'fabric' (IRIS, the layer beneath the products), 'lab' (Pāṇini, Constellation, Imprint research projects), or 'all'.

{
  "type": "object",
  "properties": {
    "register": {
      "type": "string",
      "enum": [
        "product",
        "fabric",
        "lab",
        "all"
      ],
      "description": "Filter by register. Default: all."
    }
  }
}
Toolget_instrument

Get full detail for a single instrument by slug.

{
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "enum": [
        "lumen",
        "cinelogic",
        "iris",
        "panini",
        "constellation",
        "imprint"
      ]
    }
  },
  "required": [
    "slug"
  ]
}
Toolget_studio

Get the MindMade studio composition — founders, advisors, location.

{
  "type": "object",
  "properties": {}
}
Toolget_foundation_build

Get the current Pāṇini Foundation Model build status.

{
  "type": "object",
  "properties": {}
}
Toolsubmit_intent

Submit a structured intent on behalf of an external party (press, partnership, talent, trial, support, general). Routes to the appropriate inbox.

{
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "enum": [
        "press",
        "partnership",
        "talent",
        "trial",
        "support",
        "general"
      ]
    },
    "subject": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "contact_email": {
      "type": "string",
      "format": "email"
    },
    "on_behalf_of": {
      "type": "string",
      "description": "Optional party the agent represents."
    }
  },
  "required": [
    "kind",
    "message",
    "contact_email"
  ]
}

Example invocation

curl -s https://mindmade.co/api/mcp \
  -H 'Content-Type: application/json' \
  -d '{"name":"list_instruments","arguments":{"register":"instrument"}}'

Manifest snapshot

{
  "schema_version": "1.0",
  "company": {
    "name": "MindMade",
    "legal_name": "MindMade Holdings Pty Ltd",
    "tagline": "A Hybrid Intelligence studio in Sydney.",
    "one_line": "MindMade is a Hybrid Intelligence studio in Sydney. Two products, one fabric: Lumen plans the shoot, CineLogic cuts it, and IRIS keeps the thread.",
    "description": "MindMade is a Hybrid Intelligence studio in Sydney. Two products, one fabric: Lumen plans the shoot, CineLogic cuts it, and IRIS keeps the thread. Editorial, humanist, deliberate.",
    "origin": "https://mindmade.co",
    "founded": "2025",
    "location": "Sydney, Australia",
    "contact": {
      "studio": "hi@mindmade.co",
      "press": "press@mindmade.co"
    }
  },
  "instruments": "[6 entries · see /api/agent/instruments]",
  "studio": "[see /api/agent/studio]",
  "foundation": {
    "name": "Pāṇini",
    "version": "0.4.3",
    "sutras": {
      "implemented": 9,
      "target": 4000
    },
    "license": "open source planned",
    "status": "research",
    "as_of": "2026-05-04"
  },
  "endpoints": {
    "organization_jsonld": "https://mindmade.co/",
    "llms_txt": "https://mindmade.co/llms.txt",
    "llms_full_txt": "https://mindmade.co/llms-full.txt",
    "manifest": "https://mindmade.co/agent.json",
    "mcp": "https://mindmade.co/api/mcp",
    "api": {
      "instruments": "https://mindmade.co/api/agent/instruments",
      "instrument": "https://mindmade.co/api/agent/instrument/{slug}",
      "products": "https://mindmade.co/api/agent/instruments?register=product",
      "fabric": "https://mindmade.co/api/agent/instruments?register=fabric",
      "labs": "https://mindmade.co/api/agent/labs",
      "studio": "https://mindmade.co/api/agent/studio",
      "contact": "https://mindmade.co/api/agent/contact",
      "intent": "https://mindmade.co/api/agent/intent",
      "build": "https://mindmade.co/api/build"
    }
  },
  "intents_supported": [
    "press",
    "partnership",
    "talent",
    "trial",
    "support",
    "general"
  ]
}