Private GPU : GB10 Grace Blackwell

Pay-per-run AI tools.
No subscription.

Live X research, document synthesis, and embeddings. Backed by a private GB10 GPU. Call from curl, any agent framework, or Claude's MCP.

See tools & pricing
$1.50
cheapest run
10x
margin floor on every tool
$10
free trial credit
GB10
private GPU, no shared queues
Tools

Four tools, ready now

🔍
X Research
Live X/Grok search across ~10 sources, synthesized by GB10 local LLM. Agent-ready JSON output.
📡
X Research Deep
30-source sweep with full synthesis. Use for competitive research, thesis validation, trend mapping.
📄
Document Synthesis
Summarize, extract, or answer questions over pasted text. Runs fully on GB10 local LLM. No data leaves your stack.
🧲
Embedding Index
Build RAG embedding vectors from text chunks. Local GB10 embeddings, private by default.
Quick Start

Three steps to your first run

1

Sign up : get $10 trial credit

One API call, no card required. Your key arrives in the response.

2

Submit a job

POST to /v1/run with your tool, params, and API key. Returns a job ID immediately.

3

Poll for the result

GET /v1/jobs/{id} until status is done. Typical doc_synthesis: 30-90s.

curl example : doc_synthesis
# 1. Signup
curl -X POST https://api.kyletusing.com/v1/signup \
  -H "Content-Type: application/json" \
  -d '{"email":"[email protected]"}'
# → {"api_key":"ak_..."}

# 2. Run a job
curl -X POST https://api.kyletusing.com/v1/run \
  -H "X-API-Key: ak_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tool": "doc_synthesis",
    "params": {
      "text": "Paste your document here...",
      "instruction": "Summarize the key points"
    }
  }'
# → {"job_id":"job_..."}

# 3. Poll
curl https://api.kyletusing.com/v1/jobs/job_ID \
  -H "X-API-Key: ak_YOUR_KEY"
# → {"status":"done","result":{"output":"..."}}
Try It Now

Run doc_synthesis in 60 seconds

Sign up, get a free $10 trial key, then paste any text and ask a question. Runs on private GB10.

Step 1 : Get your key
Step 2 : Run doc_synthesis
MCP Integration

Use from Claude's MCP

Add the stdio MCP server to your Claude config and every tool becomes available inside Claude Desktop or any MCP-compatible client.

1

Install the server

Clone the repo or copy mcp_server.py alongside your API key.

2

Add to claude_desktop_config.json

Point to the server script with your API key as an env var.

3

Ask Claude to use it

"Research the latest vLLM benchmarks using x_research" , Claude calls the tool, you pay $3.

claude_desktop_config.json
"mcpServers": {
  "agent-tools": {
    "command": "python3",
    "args": ["/path/to/mcp_server.py"],
    "env": {
      "AGENT_TOOLS_API_KEY": "ak_YOUR_KEY",
      "AGENT_TOOLS_BASE": "https://api.kyletusing.com"
    }
  }
}
Available tools Claude will see
x_research      : live X search + synthesis
x_research_deep : 30-source deep sweep
doc_synthesis   : summarize / extract / Q&A
embed_index     : RAG embeddings (per 1k chunks)