Configure an MCP host
Install the current prereleases and authenticate the CLI first:
npm install --global @teamgrid/cli@next @teamgrid/mcp-server@nextteamgrid auth loginteamgrid auth status --checkCodex CLI, app, and IDE extension
Section titled “Codex CLI, app, and IDE extension”Add the server from a terminal:
codex mcp add teamgrid -- teamgrid-mcp --profile defaultEquivalent configuration in ~/.codex/config.toml:
[mcp_servers.teamgrid]command = "teamgrid-mcp"args = ["--profile", "default"]startup_timeout_sec = 10tool_timeout_sec = 60Codex surfaces share this configuration. Restart an already-running host after adding the server, then verify that the TeamGrid tools are available.
Generic MCP host
Section titled “Generic MCP host”Hosts that use JSON configuration commonly accept this stdio shape:
{ "mcpServers": { "teamgrid": { "command": "teamgrid-mcp", "args": ["--profile", "default"] } }}The exact settings location and configuration key depend on the host. Consult its current MCP documentation.
Ephemeral environment
Section titled “Ephemeral environment”The process may receive TEAMGRID_API_TOKEN and TEAMGRID_API_BASE_URL. Prefer the shared operating-system keychain profile for local desktop use. If a host cannot isolate environment variables or redact logs reliably, do not inject a credential into it.
The server communicates over standard input/output. It does not listen on a TCP port.