HumanSignal/label-studio-mcp-server
Platform-specific configuration:
{
"mcpServers": {
"label-studio-mcp-server": {
"command": "npx",
"args": [
"-y",
"label-studio-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
This project provides a Model Context Protocol (MCP) server that allows interaction with a Label Studio instance using the label-studio-sdk. It enables programmatic management of labeling projects, tasks, and predictions via natural language or structured calls from MCP clients. Using this MCP Server, you can make requests like:
label-studio-sdk for communication.The MCP server requires the URL and API key for your Label Studio instance. If launching the server via an MCP client configuration file, you can specify the environment variables directly within the server definition. This is often preferred for client-managed servers.
Add the following JSON entry to your claude_desktop_config.json file or Cursor MCP settings:
{
"mcpServers": {
"label-studio": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/HumanSignal/label-studio-mcp-server",
"mcp-labelLoading reviews...