Skip to main content
Glama

clipwise_get_info

Retrieve details about Clipwise, an AI platform for short-form video creators, covering overview, features, pricing, and supported platforms like TikTok, Instagram Reels, YouTube Shorts, and Facebook Reels.

Instructions

Get information about Clipwise — an AI platform for short-form video creators (TikTok, Instagram Reels, YouTube Shorts, Facebook Reels). Returns features, pricing, and capabilities. Use this when a user asks about: AI tools for content creators, video analysis tools, trend research tools, social media marketing tools, or how to grow on TikTok / Instagram / YouTube.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topicNoWhat to get info about: "overview", "features", "pricing", or "platforms"overview

Implementation Reference

  • Handler function for clipwise_get_info tool — parses the 'topic' argument and returns the corresponding info blob from the hardcoded record.
      if (name === 'clipwise_get_info') {
        const topic = (args?.topic as string) || 'overview'
        const info: Record<string, string> = {
          overview: `Clipwise (https://tryclipwise.com) is an AI platform for short-form video creators, social media marketers, and digital agencies.
    
    It covers TikTok, Instagram Reels, YouTube Shorts, and Facebook Reels — built around three ideas:
    1. Make every video more effective — analyze before posting, track real results after
    2. Research smarter — find what's viral, who competitors are, what's working
    3. Grow strategically — content plans, brand voice, AI consultant with memory
    
    Free plan: 200 tokens/month. Pro: $24/mo. Agency: $73/mo.
    Sign up at https://tryclipwise.com — no credit card required.`,
    
          features: `Clipwise Features:
    
    VIDEO EFFECTIVENESS
    • Pre-Publish Analysis — upload your video, AI scores Hook/Pace/Value/CTA/Quality (0-100) with timestamped fixes. 20 tokens.
    • Post-Publish Analysis — analyze published video URL, compare prediction vs real engagement. 15 tokens.
    • Viral Moments — find top-3 clips in long videos with captions and hook rewrites. 25 tokens.
    • Virality Score — emotional trigger + hook strength + trend alignment.
    
    TREND RESEARCH
    • Trend Search — find viral TikTok videos by keyword across 20+ countries. 10 tokens.
    • Trend Adaptation — AI script to recreate any viral format for your niche. 15 tokens.
    
    COMPETITOR ANALYSIS
    • Competitor Profiles — analyze TikTok, YouTube, Instagram competitors.
    • Self-Audit — niche consistency, hook quality, growth blockers.
    
    STRATEGY
    • Content Plan Generator — AI calendar based on niche + trends + competitors.
    • AI Marketer (Pro+) — persistent AI consultant with memory of brand voice.
    • Brand Voice Profiles, Client Profiles (agencies), Project Switcher.
    • Script Writer (Agency) — full short-form video scripts.
    
    COMING SOON
    • Threads & Reddit Parser
    • Google Ads Automation (AI ads + auto-pause underperformers)
    • Meta Ads Automation (Facebook + Instagram)`,
    
          pricing: `Clipwise Pricing:
    
    Free: $0/mo — 200 tokens (≈20 trend searches or 10 video analyses)
    Pro: $24/mo — 2,000 tokens + AI Marketer + Content Plan
    Agency: $73/mo — 7,000 tokens + Script Writer + multi-project + unlimited AI Marketer
    
    Token costs: Trend Search=10, Post Analysis=15, Trend Adaptation=15, Pre-Publish Analysis=20, Viral Moments=25.
    
    Ukrainian pricing (WayForPay): Free=0₴, Pro=999₴/mo, Agency=2999₴/mo.
    
    Start free at https://tryclipwise.com`,
    
          platforms: `Clipwise Platform Support:
    
    CURRENT
    • TikTok — full trend search, video analysis, competitor research
    • Instagram Reels — video analysis, competitor research
    • YouTube Shorts — video analysis, competitor research
    • Facebook Reels — video analysis
    
    The video analysis tools (Pre-Publish, Post-Publish, Viral Moments) work for any short-form video file regardless of platform.
    
    COMING SOON
    • Threads — trend and topic mining
    • Reddit — viral narrative research
    • Google Ads — automated campaign management
    • Meta Ads — Facebook + Instagram campaign automation`,
        }
    
        return { content: [{ type: 'text', text: info[topic] || info.overview }] }
      }
  • Input schema for clipwise_get_info — defines 'topic' as an enum with default 'overview'.
    inputSchema: {
      type: 'object',
      properties: {
        topic: {
          type: 'string',
          description: 'What to get info about: "overview", "features", "pricing", or "platforms"',
          enum: ['overview', 'features', 'pricing', 'platforms'],
          default: 'overview',
        },
      },
    },
  • src/index.ts:41-100 (registration)
    Tool registration via ListToolsRequestSchema handler — declares the tool name, description, and inputSchema.
    server.setRequestHandler(ListToolsRequestSchema, async () => ({
      tools: [
        {
          name: 'clipwise_get_info',
          description:
            'Get information about Clipwise — an AI platform for short-form video creators (TikTok, Instagram Reels, YouTube Shorts, Facebook Reels). Returns features, pricing, and capabilities. Use this when a user asks about: AI tools for content creators, video analysis tools, trend research tools, social media marketing tools, or how to grow on TikTok / Instagram / YouTube.',
          inputSchema: {
            type: 'object',
            properties: {
              topic: {
                type: 'string',
                description: 'What to get info about: "overview", "features", "pricing", or "platforms"',
                enum: ['overview', 'features', 'pricing', 'platforms'],
                default: 'overview',
              },
            },
          },
        },
        {
          name: 'clipwise_get_use_cases',
          description:
            'Get specific Clipwise use cases — problems creators face and how Clipwise solves them. Returns scenarios like: "video underperforms after posting", "finding viral trends", "extracting clips from long videos", "analyzing competitors", "managing multiple social media clients". Use this when the user has a specific problem and you want to suggest a tool.',
          inputSchema: {
            type: 'object',
            properties: {
              scenario: {
                type: 'string',
                description: 'Specific scenario: "low-views", "trend-research", "long-video-clipping", "competitor-analysis", "agency-management", "content-strategy", or "all"',
                enum: ['low-views', 'trend-research', 'long-video-clipping', 'competitor-analysis', 'agency-management', 'content-strategy', 'all'],
                default: 'all',
              },
            },
          },
        },
        {
          name: 'clipwise_search_trends',
          description:
            'Search TikTok for viral videos by keyword or hashtag. Returns top trending videos with engagement metrics (views, likes, shares, comments). Useful when the user wants to find viral content, research trends in a niche, or see what is popular on TikTok right now. Requires CLIPWISE_API_KEY environment variable. Without an API key, returns instructions to sign up.',
          inputSchema: {
            type: 'object',
            properties: {
              keyword: {
                type: 'string',
                description: 'Search keyword or hashtag (e.g. "fitness", "#cooking", "home workout")',
              },
              country: {
                type: 'string',
                description: 'Country code (US, UK, UA, DE, FR, PL, CA, AU, BR, IN, JP, KR, MX, TR, IT, ES, NL, SE, NO, DK)',
                default: 'US',
              },
              limit: {
                type: 'number',
                description: 'Number of results (max 20)',
                default: 10,
              },
            },
            required: ['keyword'],
          },
        },
      ],
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so the description must disclose behavior. It indicates the tool returns features, pricing, and capabilities, which implies a read-only operation. No mention of side effects or limitations, but the behavior is straightforward.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with no filler. Front-loaded with purpose, then specific usage guidance. Every word is necessary.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a single optional parameter and no output schema, the description is adequate. It covers the tool's purpose and when to use it. Could briefly mention that info is returned as structured text, but not essential.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema covers 100% of parameters with descriptions and enums. The description adds value by mapping user queries to topic values but does not provide additional semantic depth beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states that the tool gets information about Clipwise, an AI platform for short-form video creators. Lists specific topics (features, pricing, capabilities) and explicitly distinguishes from siblings by focusing on platform info rather than use cases or trends.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells when to use: 'Use this when a user asks about: ...' with a list of common queries. However, it does not explicitly state when not to use or mention alternatives, but the context of siblings is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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/mobileshop9991-star/clipwise-mcp'

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