We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sachinparyani/mcp-server-shopping'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { getOrdersHistory } from './orders.js'
async function main() {
try {
const orders = await getOrdersHistory()
console.log('getOrdersHistory result:')
console.log(JSON.stringify(orders, null, 2))
} catch (error) {
console.error('Error fetching orders:', error)
}
}
main().catch(console.error)