{
    "serverInfo": {
        "name": "CalmTweets",
        "version": "1.0.0"
    },
    "description": "Free ambient music streaming — nature sounds, relaxing melodies, oriental and classical music for meditation, study and sleep.",
    "transport": [
        {
            "type": "http",
            "endpoint": "https://calmtweets.com/wp-json/"
        }
    ],
    "capabilities": {
        "tools": true,
        "resources": true,
        "prompts": false
    },
    "tools": [
        {
            "name": "get_daily_track",
            "description": "Returns today's featured track with title, audio URL, composer credit and category",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "required": []
            }
        },
        {
            "name": "browse_category",
            "description": "Returns a list of tracks in a given music category (nature, relax, oriental, classic)",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "category": {
                        "type": "string",
                        "enum": [
                            "nature",
                            "relax",
                            "oriental",
                            "classic"
                        ],
                        "description": "Music category"
                    },
                    "count": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 50,
                        "default": 10
                    }
                },
                "required": [
                    "category"
                ]
            }
        },
        {
            "name": "search_tracks",
            "description": "Search tracks by title or composer name",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "description": "Search query — track title or composer"
                    }
                },
                "required": [
                    "query"
                ]
            }
        }
    ],
    "resources": [
        {
            "uri": "https://calmtweets.com/",
            "name": "Homepage — Daily Featured Track",
            "mimeType": "text/markdown"
        },
        {
            "uri": "https://calmtweets.com/.well-known/api-catalog",
            "name": "API Catalog",
            "mimeType": "application/linkset+json"
        }
    ],
    "contact": {
        "url": "https://calmtweets.com/contact-us/"
    }
}