Civitai MCP Server

Civitai MCP Server

Provides AI assistants with access to Civitai's collection of AI models, enabling users to browse, search, and discover AI models through MCP-compatible AI assistants.

Category
访问服务器

Tools

search_models

Search for AI models on Civitai with various filters

get_model

Get detailed information about a specific model by ID

get_model_version

Get detailed information about a specific model version

get_model_version_by_hash

Get model version information by file hash

browse_images

Browse AI-generated images from Civitai

get_creators

Browse and search for model creators on Civitai

get_tags

Browse and search for model tags on Civitai

get_popular_models

Get the most popular/downloaded models

get_latest_models

Get the newest models uploaded to Civitai

get_top_rated_models

Get the highest rated models

search_models_by_tag

Search for models by a specific tag

search_models_by_creator

Search for models by a specific creator

get_models_by_type

Get models filtered by type (Checkpoint, LORA, etc.)

get_download_url

Get the download URL for a specific model version

README

Civitai MCP Server

A Model Context Protocol (MCP) server that provides AI assistants with comprehensive access to Civitai's vast collection of AI models, creators, and generated content. Browse, search, and discover AI models seamlessly through your favorite MCP-compatible AI assistant.

License: MIT Node.js Version TypeScript

Features

🔍 Model Discovery

  • Advanced Search: Find AI models with flexible filtering by type, creator, tags, and more
  • Browse Categories: Explore models by type (Checkpoints, LoRA, ControlNet, etc.)
  • Popular & Trending: Discover the most downloaded and highest-rated models
  • Latest Models: Stay up-to-date with newly uploaded models
  • Hash Lookup: Find models by file hash for verification

👨‍💻 Creator & Community

  • Creator Profiles: Browse and search for model creators
  • Creator Collections: View all models from specific creators
  • Tag System: Explore models through Civitai's comprehensive tagging system

🖼️ Generated Content

  • Image Gallery: Browse AI-generated images with detailed metadata
  • Generation Parameters: Access prompt, settings, and model information
  • Community Showcase: Discover inspiring creations from the community

📊 Model Intelligence

  • Detailed Model Info: Complete model specifications, versions, and files
  • Version History: Track model updates and improvements
  • Download URLs: Direct access to model downloads with authentication support
  • Content Safety: Access scan results for pickle and virus safety

Installation

Prerequisites

  • Node.js 18+
  • npm or yarn
  • A Civitai API key (optional, but recommended for higher rate limits)

Quick Start

  1. Clone the repository:
git clone https://github.com/Cicatriiz/civitai-mcp-server.git
cd civitai-mcp-server
  1. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. Set up your API key (optional):
export CIVITAI_API_KEY="your_api_key_here"
  1. Run the server:
npm start

Getting a Civitai API Key

  1. Visit Civitai API Keys
  2. Log in to your Civitai account
  3. Generate a new API key
  4. Copy the key and set it as an environment variable

Configuration

MCP Client Setup

Add the server to your MCP client configuration:

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "civitai": {
      "command": "node",
      "args": ["/path/to/civitai-mcp-server/dist/index.js"],
      "env": {
        "CIVITAI_API_KEY": "your_api_key_here"
      }
    }
  }
}

Other MCP Clients

Configure according to your client's documentation, using:

  • Command: node /path/to/civitai-mcp-server/dist/index.js
  • Transport: stdio
  • Environment: CIVITAI_API_KEY=your_key

Usage Examples

Basic Model Search

Search for SDXL LoRA models related to anime:
- Tool: search_models
- Query: "anime"
- Types: ["LORA"]
- BaseModels: ["SDXL 1.0"]

Find Popular Models

Get the most downloaded models this week:
- Tool: get_popular_models
- Period: "Week"
- Limit: 10

Model Details

Get comprehensive information about a specific model:
- Tool: get_model
- ModelId: 12345

Browse Generated Images

Explore recent AI-generated images:
- Tool: browse_images
- Sort: "Newest"
- Limit: 50
- NSFW: "None"

Available Tools

Tool Description Key Parameters
search_models Search models with filters query, types, sort, baseModels
get_model Get detailed model info modelId
get_model_version Get version details modelVersionId
get_model_version_by_hash Find model by file hash hash
browse_images Browse generated images sort, period, modelId
get_creators Search creators query, limit
get_tags Browse model tags query, limit
get_popular_models Most popular models period, limit
get_latest_models Newest models limit
get_top_rated_models Highest rated models period, limit
search_models_by_tag Models with specific tag tag, sort
search_models_by_creator Models by creator username, sort
get_models_by_type Filter by model type type, sort
get_download_url Get model download URL modelVersionId

API Reference

Model Types

  • Checkpoint - Full Stable Diffusion models
  • LORA - Low-Rank Adaptation models
  • TextualInversion - Embedding models
  • Hypernetwork - Hypernetwork models
  • ControlNet - ControlNet models
  • AestheticGradient - Aesthetic gradient models
  • Poses - Pose models

Sort Options

  • Highest Rated - Best community ratings
  • Most Downloaded - Most popular downloads
  • Newest - Recently uploaded

Time Periods

  • AllTime - No time restriction
  • Year - Past 12 months
  • Month - Past 30 days
  • Week - Past 7 days
  • Day - Past 24 hours

API Coverage

This MCP server implements all major Civitai API v1 endpoints:

  • /api/v1/models - List and search models
  • /api/v1/models/:id - Get specific model
  • /api/v1/model-versions/:id - Get model version
  • /api/v1/model-versions/by-hash/:hash - Get version by hash
  • /api/v1/images - Browse images
  • /api/v1/creators - List creators
  • /api/v1/tags - List tags
  • ✅ Download URLs with authentication support

Model Types Supported

  • Checkpoint: Full Stable Diffusion models
  • LORA: Low-Rank Adaptation models
  • TextualInversion: Textual inversion embeddings
  • Hypernetwork: Hypernetwork models
  • AestheticGradient: Aesthetic gradient models
  • Controlnet: ControlNet models
  • Poses: Pose models

Content Filtering

The server supports Civitai's content filtering system:

  • NSFW content levels (None, Soft, Mature, X)
  • Commercial use permissions
  • Model licensing options

Error Handling

The server includes comprehensive error handling for:

  • API rate limiting
  • Network connectivity issues
  • Invalid parameters
  • Authentication errors
  • Data validation

Development

Project Structure

civitai-mcp-server/
├── src/
│   ├── index.ts          # Main server implementation
│   ├── civitai-client.ts # Civitai API client
│   └── types.ts          # TypeScript type definitions
├── dist/                 # Compiled JavaScript output
├── tests/                # Test files
└── docs/                 # Additional documentation

Building from Source

# Install dependencies
npm install

# Build TypeScript
npm run build

# Run tests
npm test

# Development mode with hot reload
npm run dev

Testing

# Run comprehensive test suite
npm test

# Test specific endpoints
node test.js
node comprehensive-test.js

Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Setup

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests for new functionality
  5. Submit a pull request

Limitations

  • Rate Limiting: Civitai API has rate limits. Use an API key for higher limits.
  • NSFW Content: Some content may be filtered based on your account settings.
  • Model Availability: Some models may be temporarily unavailable or require authentication.

Troubleshooting

Common Issues

Server won't start:

  • Ensure Node.js 18+ is installed
  • Check that all dependencies are installed (npm install)
  • Verify the build completed successfully (npm run build)

API rate limiting:

  • Get a Civitai API key and set the CIVITAI_API_KEY environment variable
  • Reduce request frequency if experiencing limits

Models not found:

  • Check model ID accuracy
  • Verify the model hasn't been removed or made private
  • Ensure proper spelling in search queries

License

MIT License - see LICENSE file for details

Related Projects

Support

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选