ModelScope MCP Server
ModelScope's official MCP server for discovering models, datasets, studios, research papers, and MCP servers across the ModelScope ecosystem. It can retrieve resource details and generate images through supported ModelScope services, giving agents a structured interface to the hub without scraping catalog pages. Supports local stdio operation through the published Python package and optional HTTP or SSE when self-hosted.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"modelscope": {
"command": "uvx",
"args": [
"modelscope-mcp-server"
],
"env": {
"MODELSCOPE_API_TOKEN": "<YOUR_MODELSCOPE_API_TOKEN>"
}
}
}
}Tools (6)
get_current_user
Return information about the ModelScope user associated with the configured token.
{
"type": "object"
}search_models
Search the ModelScope model catalog using a free-text query and filters.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Model name, task, architecture, or other search terms."
}
}
}search_datasets
Search datasets published in the ModelScope hub.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Dataset name, task, modality, or other search terms."
}
}
}search_studios
Discover ModelScope Studio applications by keyword.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Studio or application search terms."
}
}
}search_papers
Search research papers indexed by ModelScope.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Paper title, topic, author, or keyword query."
}
}
}generate_image
Generate an image through a supported ModelScope image-generation service.
{
"type": "object",
"required": [
"prompt"
],
"properties": {
"prompt": {
"type": "string",
"description": "Text description of the image to generate."
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server information
- Author
- ModelScope (@modelscope)
- License
- Apache-2.0
- Version
- 0.2.1
- Stars
- 0
- Last updated
- August 27, 2026