get_organization
Retrieve detailed organization information, including optional team and investment data, from RootData MCP Server using a specific organization ID.
Instructions
Obtain VC details according to VC ID.
Args:
org_id: Organization ID
include_team: Whether to include team member information, default is false.
include_investments: Whether it includes investment project information, default is false.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_investments | No | ||
include_team | No | ||
org_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_investments": {
"default": false,
"title": "Include Investments",
"type": "boolean"
},
"include_team": {
"default": false,
"title": "Include Team",
"type": "boolean"
},
"org_id": {
"title": "Org Id",
"type": "integer"
}
},
"required": [
"org_id"
],
"title": "get_organizationArguments",
"type": "object"
}