{
  "mcp_version": "1.0",
  "name": "Evolutiv AI",
  "description": "MCP endpoint providing resources and tools for the Evolutiv AI ecosystem.",
  "homepage": "https://evolutiv.ai",
  "resources": [
    {
      "name": "timeline",
      "type": "json",
      "url": "https://evolutiv.ai/data/future-timeline.json",
      "permissions": ["read"]
    }
  ],
  "tools": [
    {
      "name": "add_prediction",
      "description": "Submit a new prediction to the Future Timeline.",
      "input_schema": {
        "type": "object",
        "properties": {
          "title": {"type": "string"},
          "year": {"type": "integer"}
        },
        "required": ["title", "year"]
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "id": {"type": "string"},
          "status": {"type": "string"}
        }
      }
    }
  ]
}

