We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/microsoft/genaiscript'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
script({
title: "Describe objects in each image",
model: "small",
group: "vision",
maxTokens: 4000,
system: [],
files: "src/robots.jpg",
tests: {
files: "src/robots.jpg",
keywords: "robot",
},
})
for (const file of env.files) {
const res = await runPrompt(
(_) => {
_.$`Return the list of objects in the images.`
_.defImages(file, { detail: "low" })
},
{
model: "vision",
maxTokens: 4000,
}
)
def("OBJECTS", res.text)
}
$`Summarize the content of OBJECTS.`