Skip to main content
Glama

Payware MCP Server

Official
by payware
index.jsโ€ข1.5 kB
/** * Merchant Products Tools * Complete implementation of the Products API for merchants */ // Product Management import { createProductTool } from './create-product.js'; import { listProductsTool } from './list-products.js'; import { getProductTool } from './get-product.js'; import { updateProductTool } from './update-product.js'; import { deleteProductTool } from './delete-product.js'; import { getProductImageTool } from './get-product-image.js'; // Price Schedules import { createScheduleTool, getSchedulesTool, getScheduleTool, updateScheduleTool, deleteScheduleTool } from './schedules.js'; // Audio/Soundbite Management import { registerAudioTool, getAudiosTool, getAudioTool, updateAudioTool, deleteAudioTool } from './audios.js'; /** * All merchant product tools */ export const merchantProductTools = [ // Product Management createProductTool, listProductsTool, getProductTool, updateProductTool, deleteProductTool, getProductImageTool, // Price Schedules createScheduleTool, getSchedulesTool, getScheduleTool, updateScheduleTool, deleteScheduleTool, // Audio/Soundbite Management registerAudioTool, getAudiosTool, getAudioTool, updateAudioTool, deleteAudioTool ]; /** * Get merchant product tools with proper naming * @returns {Array} Array of merchant product tools */ export function getMerchantProductTools() { return merchantProductTools; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/payware/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server