get_project
Retrieve detailed project information by ID using the Taiga MCP Bridge, enabling AI systems to access and manage Taiga project management platform data efficiently.
Instructions
Gets detailed information about a specific project by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id"
],
"title": "get_projectArguments",
"type": "object"
}