amazon-seller-mcp
Version:
Model Context Protocol (MCP) client for Amazon Selling Partner API
15 lines (14 loc) • 605 B
TypeScript
/**
* Listings tools for Amazon Selling Partner API
*/
import { ToolRegistrationManager } from '../server/tools.js';
import { ListingsClient } from '../api/listings-client.js';
import { AuthConfig } from '../types/auth.js';
/**
* Register listings tools with the tool manager
*
* @param toolManager Tool registration manager
* @param authConfig Authentication configuration
* @param providedListingsClient Optional listings client to use
*/
export declare function registerListingsTools(toolManager: ToolRegistrationManager, authConfig: AuthConfig, providedListingsClient?: ListingsClient): void;