Codex
Add StackResolve to Codex as an MCP server.
Point Codex at the hosted StackResolve endpoint. It is one server for every tool.
#Configure
Add StackResolve to your Codex MCP configuration (~/.codex/config.toml):
TOML
[mcp_servers.stackresolve]
url = "https://mcp.stackresolve.dev/mcp"
[mcp_servers.stackresolve.headers]
x-api-key = "sk_live_..."If your Codex version uses JSON config, the equivalent is:
JSON
{
"mcpServers": {
"stackresolve": {
"url": "https://mcp.stackresolve.dev/mcp",
"headers": { "x-api-key": "sk_live_..." }
}
}
}#Set your key
The hosted MCP requires a valid key in the x-api-key header. Get one at
app.stackresolve.dev. See Authentication.
#Use it
Once connected, every StackResolve tool is available to the agent:
- Discovery and readiness:
find_tools_for_task,search_tools,compare_products,get_profile,list_registry,audit. - Research:
get_company,get_pricing,research_company,get_usage.
Ask Codex to find a tool for a task, audit a vendor, or research and compare companies, and it calls the tools directly with cited, structured results instead of raw search output.
See MCP for the full tool signatures and Rate Limits for the keyed and anonymous limits.