Your account is ready. Here's everything you need to start.
Three ways to use Strue, from fastest to most powerful:
Talk to models directly from your dashboard. DeepSeek-V3, Covenant-72B, and more.
Open chat →Add Strue to Claude Desktop, Cursor, or any MCP-compatible tool. Copy this config into your settings:
{
"mcpServers": {
"strue": {
"url": "https://api.strue.com/mcp",
"auth": {
"type": "bearer",
"token": "YOUR_KEY"
}
}
}
}Your AI tool now has: inference, research, memory, storage, social data, and GPU access.
Install Pentos Bridge for local-first AI with cloud fallback. Your data stays on your machine. Strue cloud handles what local can't.
pip install pentos-bridge pentos-bridge start --key "YOUR_KEY"
Bridge automatically:
After install, check what's running:
pentos-bridge status
curl https://api.strue.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-ai/DeepSeek-V3",
"messages": [{"role": "user", "content": "hello"}]
}'