get_project
Retrieve detailed project information using a specified project ID to facilitate API management and integration within the MCP server environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}