Think Mesh
Documentation

Everything you need to connect and build on your brain.

Guides, references, and examples for setting up Think Mesh and building on top of it.

Quickstart

From zero to your first answer in five minutes

1

Create your workspace

Sign up and give your workspace a name — this is where every connection and answer will live.

2

Connect a data source

Start with email or Drive. Each connector authenticates with OAuth — we never ask for passwords.

3

Ask your first question

Try something real: "Show every email with [a client]." The brain answers from what it's already indexed.

query.sh
curl https://api.thinkmesh.in/v1/query \
  -H "Authorization: Bearer $THINKMESH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "question": "Show every email with ABC Company"
  }'

# {
#   "answer": "3 threads found, last reply 2 days ago…",
#   "sources": ["gmail", "crm"]
# }