Skip to main content
Glama

get_trending_skills

Discover trending skills on SkillFlow marketplace, sorted by popularity and trust score, to identify in-demand capabilities for AI coding agents.

Instructions

Get currently trending skills on SkillFlow marketplace, sorted by popularity and trust score.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results (default: 5)

Implementation Reference

  • The implementation of the get_trending_skills tool, which filters the SKILL_CATALOG for trending skills, sorts them by trust_score, and formats them for the MCP response.
    case "get_trending_skills": {
      const limit = (args?.limit as number) || 5;
      const trending = SKILL_CATALOG
        .filter((s) => s.trending)
        .sort((a, b) => b.trust_score - a.trust_score)
        .slice(0, limit);
    
      const formatted = trending.map((s, i) =>
        `${i + 1}. **${s.name}** (Trust: ${s.trust_score}/100)\n` +
        `   ${s.description}\n` +
        `   Install: \`${s.install}\``
      ).join("\n\n");
    
      return {
        content: [{
          type: "text",
          text: `# Trending Skills on SkillFlow\n\n${formatted}\n\n---\nSee all trending: ${SKILLFLOW_BASE_URL}/explore?sort=trending`,
        }],
      };
    }

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/rafsilva85/skillflow-mcp-server'

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