We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/m-shirt/paytal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
const reviewCodePrompt = {
id: "review-code",
metadata: {
title: "Code Review",
description: "Review code for best practices and potential issues",
argsSchema: [
{
name: "code",
description: "reivew this code",
required: true,
}]
},
handler: ({ code }) => ({
messages: [
{
role: "user",
content: {
type: "text",
text: `Please review this code:\n\n${code}`
}
}
]
})
};
export default reviewCodePrompt;