Back to Docs

list_resources

meta

Returns available MCP resources such as schema definitions, school profiles, and ayanamsa options.

When to use

When an agent needs to discover available reference data and configuration resources.

When NOT to use

When performing chart computations.

Input Schema

{
  "type": "object",
  "properties": {}
}

Output

Array of resource URIs with descriptions, grouped by category (schemas, profiles, reference data).

Example Request

{
  "jsonrpc": "2.0",
  "id": 12,
  "method": "resources/list"
}

Example Response

{
  "jsonrpc": "2.0",
  "id": 12,
  "result": {
    "resources": [
      {
        "uri": "kundalimcp://schema/chart-artifact",
        "name": "ChartArtifact Schema",
        "mimeType": "application/json"
      }
    ]
  }
}