Gemini CLI
Configure TaskJunky MCP server for Google Gemini CLI.
Setup (OAuth — recommended)
Gemini CLI supports HTTP MCP servers:
{
"mcpServers": {
"taskjunky": {
"url": "https://web.taskjunky.app/mcp"
}
}
}Gemini will handle OAuth automatically on first use.
If your repo has a GEMINI.md, add the same TaskJunky startup rule there:
## TaskJunky (MCP)
Always call `get_context` at the start of every new session and whenever resuming a previous session before taking new actions.Trust mode
To skip tool confirmation prompts for TaskJunky tools:
{
"mcpServers": {
"taskjunky": {
"url": "https://web.taskjunky.app/mcp",
"trust": true
}
}
}Verify it works
After configuring, restart Gemini CLI and ask it to call get_context. It should return your rules, projects, and lists. On resumed sessions, it should call get_context again before new work.