STSciTuuWet Lab ToolsBETA
Tools

REMOTE MCP · PHASE 2.5

Connect deterministic wet-lab tools to your AI workspace.

SciTuu MCP exposes 24 research-use-only calculation tools over stateless Streamable HTTP. AI clients choose the tool; SciTuu’s deterministic engine performs the arithmetic.

01

Configure a remote HTTP MCP client

  1. Choose Add remote MCP server or Add HTTP connector in your AI client.
  2. Set the server URL to https://scituu.com/api/mcp.
  3. For anonymous testing, leave authentication empty. After three calls, create an account below.
  4. For registered access, add Authorization: Bearer YOUR_SCITUU_TOKEN.
Client field names differ. Use a remote/HTTP MCP transport, not a local stdio command. This beta returns JSON responses and does not open a stateful SSE session.

02A

Generic JSON configuration

{
  "mcpServers": {
    "scituu": {
      "type": "http",
      "url": "https://scituu.com/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SCITUU_TOKEN"
      }
    }
  }
}

02B

Test with curl

curl https://scituu.com/api/mcp \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_SCITUU_TOKEN' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

BETA ACCESS

Register after your three anonymous calls

Registration creates a browser session and a personal MCP Bearer token. The token is shown once and stored only when you explicitly save it in this browser.