Trakt MCP Server

Trakt MCP Server

Enables MCP-compatible AI agents to interact with Trakt.tv, including search, movies, TV shows, and user account features like watchlist and history.

Category
Visit Server

README

Trakt MCP Server

A Model Context Protocol (MCP) server for the Trakt.TV API, deployable to Vercel. Connect any MCP-compatible AI agent to your Trakt watch history, ratings, watchlist, and much more.

Features

  • 30+ MCP tools spanning search, movies, TV shows, and user account features
  • OAuth authentication — users connect their Trakt account via the landing page
  • No auth required for public tools (search, trending, popular, details)
  • One-click Vercel deployment with built-in Streamable HTTP transport
  • Beautiful landing page for OAuth flow and configuration

Available Tools

Public (no auth required)

  • trakt_search — Search for movies, shows, episodes, people
  • trakt_lookup — Look up items by IMDb, TMDb, TVDB, or Trakt ID
  • trakt_get_movie / trakt_get_show — Get full details
  • trakt_trending_movies / trakt_trending_shows
  • trakt_popular_movies / trakt_popular_shows
  • trakt_related_movies / trakt_related_shows
  • trakt_movie_people / trakt_show_people — Cast & crew
  • trakt_get_show_seasons / trakt_get_season_episodes / trakt_get_episode
  • trakt_anticipated_movies

Requires OAuth (🔒)

  • trakt_get_profile / trakt_get_stats
  • trakt_get_watchlist / trakt_add_to_watchlist / trakt_remove_from_watchlist
  • trakt_get_history / trakt_add_to_history
  • trakt_get_ratings / trakt_add_rating
  • trakt_get_watched
  • trakt_checkin / trakt_delete_checkin
  • trakt_get_lists / trakt_get_list_items
  • trakt_get_calendar
  • trakt_get_recommendations

Setup

1. Create a Trakt App

Go to trakt.tv/oauth/applications and create a new application.

Set the Redirect URI to:

  • Local: http://localhost:3000/api/auth/callback
  • Vercel: https://your-project.vercel.app/api/auth/callback

2. Configure Environment Variables

cp .env.example .env.local

Edit .env.local:

TRAKT_CLIENT_ID=your_client_id
TRAKT_CLIENT_SECRET=your_client_secret
NEXT_PUBLIC_BASE_URL=http://localhost:3000

3. Run Locally

bun install
bun dev

Visit http://localhost:3000 and click Connect with Trakt to get your access token.

4. Deploy to Vercel

bunx vercel

Set environment variables in the Vercel dashboard:

  • TRAKT_CLIENT_ID
  • TRAKT_CLIENT_SECRET

MCP Client Configuration

Add to your MCP client config (e.g., Cursor, Claude Desktop):

{
  "mcpServers": {
    "trakt": {
      "url": "https://your-project.vercel.app/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TRAKT_ACCESS_TOKEN"
      }
    }
  }
}

For public-only access (no user features), omit the headers block.

Architecture

src/
├── app/
│   ├── api/
│   │   ├── [transport]/route.ts   # MCP Streamable HTTP endpoint
│   │   └── auth/callback/route.ts # Trakt OAuth callback
│   ├── .well-known/
│   │   └── oauth-protected-resource/route.ts  # OAuth metadata
│   ├── layout.tsx
│   ├── page.tsx                   # Landing page with OAuth flow
│   └── globals.css
└── lib/
    ├── mcp-server.ts              # MCP server factory
    ├── tools/
    │   ├── search.ts              # Search & lookup tools
    │   ├── movies.ts              # Movie tools
    │   ├── shows.ts               # TV show tools
    │   └── user.ts                # User/auth tools
    └── trakt/
        ├── client.ts              # API client + error handling
        └── types.ts               # TypeScript type definitions

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured