Advent of Code MCP Server
Interact with the Advent of Code website. Requires a session cookie for authentication.
Advent of Code MCP Server
MCP server to interact with the Advent of Code website.
This project is developed for educational purposes. The server aims to simplify interactions with the Advent of Code website and enhance the puzzle-solving workflow.
However, building a self-submitting app around solutions will likely be the most efficient approach.
Tools
GetAocProgress
- Gets star count for a specified Advent of Code year
- Parameters:
year
(int) - Returns:
Stars
(int)
SubmitAnswer
- Submits an answer for an Advent of Code day part. If the previous answer has been given too recently, waits until it can be submitted (with progress notifications).
- Parameters: int year, int day, int part, string answer
- Returns:
Correct
/Incorrect
/TooLow
/TooHigh
GetInputResource
- Retrieves the personal puzzle input
- Parameters: int year, int day
- Returns: input text as an embedded resource
SaveInput
- Retrieves a puzzle input and saves to the specified location. Can be useful as many LLMs hallucinate when writing large inputs to a file.
- Parameters: int year, int day, string destinationFullPath
- Returns: nothing
Resources
aocinput://{year}/{day}
Resource template for the personal puzzle input
Use this MCP Server
{ "mcpServers": { "aoc": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "SESSION_COOKIE", "ghcr.io/mazharenko/aoc-mcp" ], "env": { "SESSION_COOKIE": "" } } } }
Prompt examples
> get aoc stats for 2024
> submit "42" for 2024/10/1
> get aoc input for 2024/10 and save it
> Get aoc input for 2024/10 and write it to a new file. Run aoc program for year 2024 day 10, pass 2024 and 10 as positional arguments and the created file path as --input-file argument. Read the answers from the output and submit them.
Related Servers
Laravel Codebase Introspection
Introspects Laravel codebases to provide structured information about views, routes, classes, and models using the mateffy/laravel-introspect package.
Authless MCP Server Example
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
Simple MCP Server
A starter MCP server built with TypeScript and the official MCP SDK, featuring example tools like echo, add, time, and flight status.
Text-To-GraphQL
MCP server for text-to-graphql, integrates with Claude Desktop and Cursor.
WordPress Dev Docs
Access WordPress development rules and best practices from the WordPress LLM Rules repository.
Elementor MCP Server
Perform CRUD operations on Elementor page data for a target WordPress website.
MCP JSON
A collection of servers for file system operations, Google search, web automation, and executing terminal commands.
MCP Documentation Server
Integrates LLM applications with documentation sources using the Model Context Protocol.
Julia Documentation MCP Server
An MCP server for accessing Julia documentation and source code.
MCP Lab
A development environment for building and testing custom MCP servers with AI and VS Code integration.