You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
673 B

{
"id": "daily-horoscope",
"name": "Daily Horoscope",
"version": "1.0.0",
"description": "Daily horoscope and fortune analysis with Chinese almanac integration",
"main": "index.js",
"type": "plugin",
"configSchema": {
"type": "object",
"properties": {
"enabled": { "type": "boolean", "default": true }
}
},
"tools": [
{
"name": "getDailyHoroscope",
"description": "Get daily horoscope and fortune analysis",
"inputSchema": {
"type": "object",
"properties": {
"date": { "type": "string", "description": "Target date YYYY-MM-DD" }
},
"required": ["date"]
}
}
]
}