get_api
Retrieve API details by specifying project and API IDs, enabling integration and management of APIs within the MCP-APIKit server for streamlined development workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiId | Yes | API ID | |
projectId | Yes | Project ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiId": {
"description": "API ID",
"type": "string"
},
"projectId": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"projectId",
"apiId"
],
"type": "object"
}