get_project_by_slug
Retrieve detailed project information using a unique slug to access its data in the Taiga project management platform through the MCP Bridge.
Instructions
Gets detailed information about a specific project by its slug.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | ||
slug | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
},
"slug": {
"title": "Slug",
"type": "string"
}
},
"required": [
"session_id",
"slug"
],
"title": "get_project_by_slugArguments",
"type": "object"
}