We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Fujitsu-AI/MCP-Server-for-MAS-Developments'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export{ weather }
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
async function weather(args){
const apiUrl = "https://wttr.in/" + encodeURIComponent(args.location)+ "?format=\"%t+%C+%h+%w\n\""
const result = await fetch(apiUrl)
.then(response => response.text());
return {
content: [{ type: "text", text: `${result}` }],
};
}