MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

Official VeedCrawl MCP server for transcripts, metadata, and AI-powered video extraction. Powerful Video intelligence for AI agents.

Created 5/4/2026
Updated about 4 hours ago
Repository documentation and setup instructions

Veedcrawl MCP Server

Official VEEDCRAWL MCP server for transcript, metadata, and AI extraction tools.

Tools

  • get_video_metadata
  • get_video_transcript
  • extract_from_video

Environment Variables

  • VEEDCRAWL_API_KEY required
  • VEEDCRAWL_BASE_URL optional, defaults to https://api.veedcrawl.com
  • VEEDCRAWL_POLL_INTERVAL_MS optional, defaults to 1500
  • VEEDCRAWL_MAX_POLL_ATTEMPTS optional, defaults to 120

Compatibility aliases:

  • X_API_KEY

Cursor

Clone the repo, build it once, then point Cursor at the built entrypoint:

{
  "mcpServers": {
    "veedcrawl": {
      "command": "node",
      "args": ["/absolute/path/to/mcp/dist/index.js"],
      "env": {
        "VEEDCRAWL_API_KEY": "ma_your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add veedcrawl -- env VEEDCRAWL_API_KEY=ma_your_key_here node /absolute/path/to/mcp/dist/index.js
Quick Setup
Installation guide for this server

Install Package (if required)

npx @modelcontextprotocol/server-mcp

Cursor configuration (mcp.json)

{ "mcpServers": { "veedcrawl-mcp": { "command": "npx", "args": [ "veedcrawl-mcp" ] } } }