The Informed Repricer Model Context Protocol (MCP) server gives compatible AI clients authorized access to Informed Repricer account data and supported workflows. It is intended for agents that need repricing context while working with a seller's wider operational toolset.
For client-specific connection steps and prompt examples, see the Informed Repricer MCP page.
Server endpoint
https://mcp.informedrepricer.com/mcpThe server is hosted by Informed Repricer. You do not need to install or run a local MCP server.
Transport and authentication
- Transport: Streamable HTTP
- Authentication: OAuth
- Credential handling: The user completes sign-in with their Informed Repricer account in the browser. The AI client does not receive the user's Informed Repricer password.
Configure the endpoint as a remote MCP server in a client that supports Streamable HTTP and OAuth. The client will direct the user through the authorization flow when it connects.
Client setup
Claude Code
claude mcp add --transport http informed-repricer https://mcp.informedrepricer.com/mcpGoogle Antigravity
Add the server through Antigravity's MCP Manager or MCP settings using this remote server configuration:
{
"mcpServers": {
"informed-repricer": {
"serverUrl": "https://mcp.informedrepricer.com/mcp"
}
}
}Antigravity opens the Informed Repricer OAuth flow when authentication is required. See the Antigravity MCP documentation for its current configuration and authentication workflow.
Other agents and MCP clients
- Open the agent's MCP server, connector, integration, or tools settings.
- Add a custom remote MCP server.
- Select Streamable HTTP when the client requests a transport.
- Enter
https://mcp.informedrepricer.com/mcpas the server URL. - Complete the Informed Repricer OAuth sign-in in the browser.
- Confirm the connection and allow the agent to discover the server's available tools.
For browser-based clients, the connection is usually named a custom connector. For CLI and IDE agents, it is usually declared in the agent's MCP configuration. Consult the client documentation when its terminology or configuration format differs.
Capabilities
After authorization, an agent can use the Informed Repricer context available to the MCP server to:
- Look up listings in the authorized Informed Repricer account.
- Retrieve listing, strategy, and analytics information available in the Informed Repricer web application.
- Analyze active repricing strategies and make recommendations based on the available account context.
- Identify performance patterns, including listings that need further review.
The MCP protocol exposes the capabilities that are available to the connected client at runtime. Agents should inspect the server's tool definitions rather than assuming a particular tool name or input schema.
Working with other seller tools
The Informed Repricer MCP server is designed to be used alongside other MCP servers connected to the same agent. For example, an agent can use Informed Repricer account context together with seller and inventory data from tools such as Seller Central, Walmart Seller Center, or an inventory-management system.
The connected client controls which servers and tools are available to the agent. Informed Repricer does not grant access to external seller tools by itself.
Security considerations
- Connect only from an MCP client you trust.
- Use OAuth authorization instead of sharing Informed Repricer credentials with an agent or client.
- Treat bulk update requests as write operations and validate listing scope before authorizing them.
- Disconnect or revoke access in the connected client when it is no longer required.