Skip to content

Quick Start

Terminal window
# Install
pip install prism-platform
# Login
prism login
# Search the knowledge graph
prism query --platform --semantic "creep resistant superalloy" --json
# Run a research query
prism query --platform --semantic "what materials resist nozzle erosion"
Terminal window
pip install marc27
from marc27 import PlatformClient
client = PlatformClient(api_key="m27_your_key_here")
# Search
results = client.knowledge.search("thermal barrier coating")
# LLM completion
response = client.llm.complete(
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "Explain creep in Ni-based superalloys"}]
)
Terminal window
# No SDK needed — just curl
export MARC27_API_KEY=m27_your_key_here
# Search the knowledge graph
curl -H "X-API-Key: $MARC27_API_KEY" \
"https://api.marc27.com/api/v1/knowledge/graph/search?q=titanium&limit=5"
# Semantic search
curl -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}'
Terminal window
# One env var — that's it
export MARC27_API_KEY=m27_your_key_here
# Read the full API map
curl https://api.marc27.com/api/v1/agent/capabilities
# Or use PRISM
prism agent # prints all commands