add in ~30 seconds

Add Glimind // to any agent

Glimind works with any MCP client — copy one config block. No signup; a free key is optional for higher limits. Once added, your agent can call prepare_tool_call before any tool to get the verdict, a working recipe, expected output, timeout/retry, and a live alternative in one round-trip.

Claude Code (CLI)

claude mcp add --transport http glimind https://glimind.com/mcp

Claude Desktop · Cursor · Windsurf (mcpServers JSON)

Add to your client's MCP config (e.g. claude_desktop_config.json, Cursor ~/.cursor/mcp.json, Windsurf mcp_config.json):

{
  "mcpServers": {
    "glimind": {
      "type": "http",
      "url": "https://glimind.com/mcp"
    }
  }
}

For clients that only speak stdio, bridge with npx -y mcp-remote https://glimind.com/mcp as the command.

VS Code (GitHub Copilot)

code --add-mcp '{"name":"glimind","type":"http","url":"https://glimind.com/mcp"}'

SDK — TypeScript / Python

npm i glimind          # or:  pip install glimind
import { Glimind } from "glimind";
const glimind = new Glimind();           // zero-config → https://glimind.com
const out = await glimind.wrap("server/tool",
  (id) => callTool(id, args),
  { input: args, task: "search", autoRoute: true });  // health-check + failover + report

Already on OpenTelemetry? No new SDK

export OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=https://glimind.com/v1/traces
export OTEL_EXPORTER_OTLP_PROTOCOL=http/json

See the OpenTelemetry guide and all integrations.

Verify it works

curl https://glimind.com/v1/prepare/github%2Fsearch_repositories?task=search

Get a free key for higher limits: https://glimind.com/keys · full reference: docs · llms-full.txt (for IDE agents).