Welcome to Strue

Your account is ready. Here's everything you need to start.

Your API Key

Keep this key safe. It's your identity on Strue. 500 credits · 2GB storage · 100 data queries included.
Get started

Three ways to use Strue, from fastest to most powerful:

Instant — zero install

Chat

Talk to models directly from your dashboard. DeepSeek-V3, Covenant-72B, and more.

Open chat →
30 seconds

Connect Your Tools

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.

Where to paste this:

5 minutes — recommended

Run Locally

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

Test Your Key

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"}]
}'