I realize that it might break anytime because I basically just guessed what the structure in the database means and it can change anytime. For that reason, I opted for a read-only approach. Then this tool will at least not corrupt databases and make Everdo maintenance harder than it needs to be.
That being said, I just really needed some very basic features for myself (counting current number of inbox items). LMK what you think and if you find it useful. Also bug reports, feature requests, and contributions are very welcome on Github!
Absolutely! There are actually a couple of use cases:
I have a StreamDeck and would like to see the current number of items in my Inbox on it (doesn’t need to be real-time). Buttons can just display contents of files so I now have cronjob using my Python library to count the items on inbox and write that number to a text file.
Especially when it comes to really old tasks “I know I did that thing once, but can only remember that it contained the word apple”, nothing beats grep on the command line.
On a similar topic: a bit of cut/awk/sort/uniq does wonders when it comes to long-term stats of style “how many tasks did I finish in every month last year?”
I am currently planning to expose my Everdo list to an LLM via an MCP server.
It depends on what you are editing. Something simple like a title of an action is unlikely to go wrong, but something like creating entire items is risky.
You don’t know what assumptions the app is making about the data, so you could silently corrupt the data and break the application. I know you are probably careful about this and have backups, but it’s possible to go without noticing a problem until later on when the earlier backups are gone.
You update may work correctly today, but end up corrupting the database in a future version of the app that expect different things about the data.
None of your edits will reflect in the app until restart, which increases the probability of silently breaking something and only learning about it in a few days when you restart the computer
@larsborn pretty cool, I’ve been thinking about MCP myself, but didn’t get around to it yet. For the most part I don’t want to share the entire history of my projects with an LLM, so I’m just using this to share one action at a time Exporting Everdo actions as Markdown for AI prompting