StoreInspect MCP is a hosted remote MCP server. Use the same endpoint in every client:
https://mcp.storeinspect.com/mcp
Authentication is OAuth. When the client connects, sign in to StoreInspect and approve the requested scopes.
Do not paste StoreInspect API keys into AI clients. MCP uses OAuth and does not require API keys.
Before you begin
- A paid StoreInspect plan with API access
- An MCP-compatible client
- Access to sign in to the StoreInspect account you want the client to use
ChatGPT
Use StoreInspect MCP as a custom connector.
- Open ChatGPT settings.
- Go to Connectors.
- Create a custom connector.
- Use this MCP server URL:
https://mcp.storeinspect.com/mcp
- Choose OAuth as the authentication method.
- Sign in to StoreInspect and approve the requested permissions.
- Ask ChatGPT to use StoreInspect to check your current usage.
Claude
Use StoreInspect MCP as a custom connector.
- Open Claude settings.
- Go to Connectors.
- Add a custom connector.
- Use this URL:
https://mcp.storeinspect.com/mcp
- Start the OAuth flow and sign in to StoreInspect.
- Ask Claude to use StoreInspect to show your current quota state.
Claude Code
Run:
claude mcp add --transport http storeinspect https://mcp.storeinspect.com/mcp
Then open Claude Code and run:
Follow the OAuth flow to authenticate with StoreInspect.
Codex CLI
Add the hosted MCP server:
codex mcp add storeinspect \
--url https://mcp.storeinspect.com/mcp \
--oauth-resource https://mcp.storeinspect.com/mcp
Authenticate with StoreInspect:
codex mcp login storeinspect
Then open Codex and run:
Confirm that storeinspect is connected.
Cursor
Add StoreInspect MCP to your Cursor MCP configuration.
{
"mcpServers": {
"storeinspect": {
"url": "https://mcp.storeinspect.com/mcp"
}
}
}
When Cursor starts the connection, complete the StoreInspect OAuth flow.
VS Code
Use VS Code’s MCP server configuration.
{
"servers": {
"storeinspect": {
"type": "http",
"url": "https://mcp.storeinspect.com/mcp"
}
}
}
Then authenticate with StoreInspect when prompted.
Other clients
Use these settings for clients that support remote MCP servers:
| Setting | Value |
|---|
| Server URL | https://mcp.storeinspect.com/mcp |
| Transport | Streamable HTTP |
| Authentication | OAuth |
For JSON-based clients, use:
{
"mcpServers": {
"storeinspect": {
"url": "https://mcp.storeinspect.com/mcp"
}
}
}
Verify the connection
Ask your client:
Use StoreInspect to show my current usage.
The client should call get_usage and return your plan, request quota, search-row usage, and remaining contact credits.
If the client cannot connect, see MCP troubleshooting.