{
  "markdown": "# Weekness MCP Server\n\n<!-- mcp-name: io.github.dvdksn/weekness -->\n\nAn MCP (Model Context Protocol) server that provides week and calendar helper\ntools for converting between dates and ISO weeks, performing week arithmetic,\nand looking up weekday names.\n\n## Tools\n\n- **current_date**: Get today's date (YYYY-MM-DD) and weekday name\n- **current_week**: Get today's ISO week year, week number, week string, and weekday name\n- **timestamp_to_week**: Convert a date or timestamp to its ISO week number and week string\n- **week_to_dates**: Get the Monday start date and Sunday end date for an ISO year and week number\n- **add_weeks**: Add or subtract weeks from a date or week string\n- **weeks_between**: Calculate the number of weeks between two dates\n- **weekday_of_date**: Get the weekday name for a given date\n- **nearest_weekday**: Find the nearest past or future occurrence of a given weekday\n\n## Installation\n\n### Docker\n\n```bash\ndocker run --rm -i ghcr.io/dvdksn/weekness:latest\n```\n\n### Build from source\n\n```bash\ngo build -o weekness .\n```\n\n## Usage\n\nThis MCP server communicates over stdio and is designed to be used with MCP\nclients like Claude Desktop or other applications that support the Model Context\nProtocol.\n\n### Configure in Claude Desktop\n\n**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"weekness\": {\n      \"command\": \"docker\",\n      \"args\": [\"run\", \"--rm\", \"-i\", \"ghcr.io/dvdksn/weekness:latest\"]\n    }\n  }\n}\n```\n\nOr if running from a local build:\n\n```json\n{\n  \"mcpServers\": {\n    \"weekness\": {\n      \"command\": \"/path/to/weekness\"\n    }\n  }\n}\n```\n\n## Supported Timestamp Formats\n\n- ISO 8601 with time: `2024-03-15T10:30:00Z`\n- ISO 8601 with timezone: `2024-03-15T10:30:00-07:00`\n- Date only: `2024-03-15`\n- ISO week string: `2024-W15` (where accepted)\n",
  "bytes": 1835,
  "sha": "016de6b7fe7ae31aaf54f672c3752ebe05bb8cc9fc59bda16bbc492b0be0f67d",
  "repo_slug": "dvdksn/weekness",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_dvdksn_weekness_377c1bb6/readme"
}