get_project
Retrieve detailed information about a cryptocurrency or blockchain project by its ID using RootData MCP Server. Include optional team and investor data for comprehensive insights.
Instructions
Obtain project details according to the project ID.
Args:
project_id: The unique identifier for the project.
include_team: Whether to include team member information, default is false.
include_investors: Whether to include investor information, default is false.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_investors | No | ||
include_team | No | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_investors": {
"default": false,
"title": "Include Investors",
"type": "boolean"
},
"include_team": {
"default": false,
"title": "Include Team",
"type": "boolean"
},
"project_id": {
"title": "Project Id",
"type": "integer"
}
},
"required": [
"project_id"
],
"title": "get_projectArguments",
"type": "object"
}