Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Latest commit

 

History

History
62 lines (45 loc) · 1.43 KB

File metadata and controls

62 lines (45 loc) · 1.43 KB
id mcp-overview
title MCP Server

The TanStack CLI includes a Model Context Protocol (MCP) server that enables AI assistants to:

  • Create TanStack Start projects with integrations
  • Search and fetch TanStack documentation
  • Explore the TanStack ecosystem (partners, libraries)

Claude Desktop Setup

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "tanstack": {
      "command": "npx",
      "args": ["@tanstack/cli", "mcp"]
    }
  }
}

Restart Claude Desktop. Then try:

"Create a TanStack Start project called 'my-app' with Clerk auth and Drizzle ORM"

Or:

"How do I use loaders in TanStack Router?"

Manual Start

# Stdio (default, for MCP clients)
tanstack mcp

# HTTP/SSE
tanstack mcp --sse --port 8080

Tools

Project Creation

Tool Description
listTanStackIntegrations Get available integrations for project creation
createTanStackApplication Create a new TanStack Start project

Documentation & Ecosystem

Tool Description
tanstack_list_libraries List TanStack libraries with metadata
tanstack_doc Fetch a documentation page by library and path
tanstack_search_docs Search documentation via Algolia
tanstack_ecosystem Browse ecosystem partners by category or library

See Tools Reference for parameters and examples.