MCP server for Nubis task management
npm install @lil2good/nubis-mcp-serverThe Model Context Protocol (MCP) is a standardized interface that allows AI models to access external tools and data sources. This server implements the MCP specification to provide AI assistants with access to Nubis task management functionality.
``bash`
npx -y @lil2good/nubis-mcp-server@latest --workspaceID
This MCP server provides the following tools:
``
Parameters:
- limit: number (optional, default: 5)
- board: 'bugs' | 'backlog' | 'priority' | 'in-progress' | 'reviewing' | 'completed' (optional)
``
Parameters:
- taskID: string (required)
``
Parameters:
- taskID: string (required)
``
Parameters:
- taskID: string (required)
``
Parameters:
- taskID: string (required)
``
Parameters:
- taskID: string (required)
- board: 'backlog' | 'in-progress' | 'reviewing' | 'completed' (required)
To use this MCP server with AI assistants that support MCP, add the following configuration:
`json``
"nubis": {
"command": "npx",
"args": [
"-y",
"@lil2good/nubis-mcp-server@latest"
],
"env": {
"NUBIS_API_KEY": "
"NUBIS_WORKSPACE_ID": "
}
}
This MCP server uses a secure middleware architecture that keeps your API credentials safe. All privileged operations are performed through a secure server, while the MCP interface remains lightweight and secure for public distribution.