Quick Start
Option 1: PRISM CLI (recommended)
Section titled “Option 1: PRISM CLI (recommended)”# Installpip install prism-platform
# Loginprism login
# Search the knowledge graphprism query --platform --semantic "creep resistant superalloy" --json
# Run a research queryprism query --platform --semantic "what materials resist nozzle erosion"Option 2: Python SDK
Section titled “Option 2: Python SDK”pip install marc27from marc27 import PlatformClient
client = PlatformClient(api_key="m27_your_key_here")
# Searchresults = client.knowledge.search("thermal barrier coating")
# LLM completionresponse = client.llm.complete( model="claude-sonnet-4-20250514", messages=[{"role": "user", "content": "Explain creep in Ni-based superalloys"}])Option 3: Direct API
Section titled “Option 3: Direct API”# No SDK needed — just curlexport MARC27_API_KEY=m27_your_key_here
# Search the knowledge graphcurl -H "X-API-Key: $MARC27_API_KEY" \ "https://api.marc27.com/api/v1/knowledge/graph/search?q=titanium&limit=5"
# Semantic searchcurl -X POST -H "X-API-Key: $MARC27_API_KEY" \ -H "Content-Type: application/json" \ "https://api.marc27.com/api/v1/knowledge/search" \ -d '{"query": "high temperature creep resistant superalloy", "limit": 5}'For AI Agents
Section titled “For AI Agents”# One env var — that's itexport MARC27_API_KEY=m27_your_key_here
# Read the full API mapcurl https://api.marc27.com/api/v1/agent/capabilities
# Or use PRISMprism agent # prints all commands