Skip to main content
Glama

browse_category

Browse sounds by category on myinstants.com to find meme sounds, sound effects, and viral audio clips for use in AI agent interactions.

Instructions

Browse sounds by category on myinstants.com.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryYesCategory name: anime & manga, games, memes, movies, music, politics, pranks, reactions, sound effects, sports, television, tiktok trends, viral, whatsapp audios

Implementation Reference

  • The 'browse_category' tool is registered and implemented in server.js, using the 'category' function to fetch sounds by category.
    server.tool(
      "browse_category",
      "Browse sounds by category on myinstants.com.",
      { category: z.string().describe(`Category name: ${CATEGORIES.join(", ")}`) },
      async ({ category: cat }) => {
        const match = CATEGORIES.find(c => c.toLowerCase() === cat.toLowerCase()) || cat;
        const results = await category(match);
        if (!results.length) return { content: [{ type: "text", text: `No sounds in category "${cat}"` }] };
        return { content: [{ type: "text", text: `**${match}:**\n` + results.slice(0, 20).map((r, i) => `${i + 1}. ${r.name} → \`${r.slug}\``).join("\n") }] };
      }
    );
Install Server

Other Tools

Latest Blog Posts

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/austenstone/myinstants-mcp'

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