Connect to idcd MCP in five minutes
1. Create a token
Open Dashboard → MCP Connection Tokens, enter a recognizable name, and select Create token. Copy the idcd_mcp_... value immediately; the plaintext is shown only once.
2. Configure your client
Every client uses the same URL:
https://mcp.idcd.com/mcp
Codex
export IDCD_MCP_TOKEN='idcd_mcp_replace_with_your_token'
codex mcp add idcd \
--url https://mcp.idcd.com/mcp \
--bearer-token-env-var IDCD_MCP_TOKEN
IDCD_MCP_TOKEN is a local environment variable that you define for this Codex configuration. Run codex mcp list, then enter /mcp in Codex to see the 13 tools.
Cursor IDE
Save this as your personal global configuration at ~/.cursor/mcp.json, then restart Cursor:
{
"mcpServers": {
"idcd": {
"url": "https://mcp.idcd.com/mcp",
"headers": {
"Authorization": "Bearer idcd_mcp_replace_with_your_token"
}
}
}
}
Cursor Cloud
Open the MCP dropdown at cursor.com/agents and add a personal HTTP server:
Name: idcd
Type: HTTP
URL: https://mcp.idcd.com/mcp
Header: Authorization = Bearer idcd_mcp_replace_with_your_token
Cursor Cloud does not support SSE; choose HTTP.
Claude Code
claude mcp add \
--transport http \
--scope user \
--header "Authorization: Bearer idcd_mcp_replace_with_your_token" \
idcd https://mcp.idcd.com/mcp
Run claude mcp list, or enter /mcp in Claude Code, and confirm that idcd is connected with 13 tools.
3. Try it
Use idcd to check example.com's DNS, TLS certificate, and Ping.
For client-specific details, see the Codex, Cursor, and Claude Code guides.