{"server":{"name":"transfervandaag-mcp","version":"0.1.0","title":"Transfer Vandaag"},"tools":[{"name":"list_latest_articles","title":"Latest transfer articles","description":"Returns the most recent Dutch football transfer articles from Transfer Vandaag, sorted by publish date (newest first).","annotations":{"readOnlyHint":true,"idempotentHint":true,"openWorldHint":false},"inputSchema":{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{"limit":{"default":10,"description":"How many articles to return (1-50).","type":"integer","minimum":1,"maximum":50}}},"outputSchema":null},{"name":"search_articles","title":"Search transfer articles","description":"Full-text style search over transfer articles by matching the query against title, summary, club and player fields.","annotations":{"readOnlyHint":true,"idempotentHint":true,"openWorldHint":false},"inputSchema":{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{"query":{"type":"string","minLength":2,"description":"Search text: player name, club, keyword."},"limit":{"default":10,"type":"integer","minimum":1,"maximum":30}},"required":["query"]},"outputSchema":null},{"name":"get_article","title":"Get article by slug","description":"Returns the full transfer article (title, summary, body HTML, club, player, publish date) for a given slug.","annotations":{"readOnlyHint":true,"idempotentHint":true,"openWorldHint":false},"inputSchema":{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{"slug":{"type":"string","minLength":1,"description":"Article slug, e.g. 'ajax-verkoopt-speler-x'."}},"required":["slug"]},"outputSchema":null},{"name":"list_clubs","title":"List clubs","description":"Returns all Dutch football clubs covered by Transfer Vandaag (Eredivisie and Keuken Kampioen Divisie) with their slug and hub URL.","annotations":{"readOnlyHint":true,"idempotentHint":true,"openWorldHint":false},"inputSchema":{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{}},"outputSchema":null},{"name":"list_articles_by_club","title":"Articles by club","description":"Returns the latest transfer articles for a specific club. Use `list_clubs` first to find the correct slug.","annotations":{"readOnlyHint":true,"idempotentHint":true,"openWorldHint":false},"inputSchema":{"$schema":"http://json-schema.org/draft-07/schema#","type":"object","properties":{"club_slug":{"type":"string","minLength":1,"description":"Club slug from list_clubs, e.g. 'ajax'."},"limit":{"default":10,"type":"integer","minimum":1,"maximum":30}},"required":["club_slug"]},"outputSchema":null}]}