{"id":28768606,"url":"https://github.com/klauern/mcp-ynab","last_synced_at":"2026-04-11T03:48:10.184Z","repository":{"id":278057213,"uuid":"934380339","full_name":"klauern/mcp-ynab","owner":"klauern","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-25T01:36:10.000Z","size":168,"stargazers_count":6,"open_issues_count":1,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-11T03:47:37.867Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/klauern.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-17T18:25:08.000Z","updated_at":"2026-02-01T13:57:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"1fa69bae-70aa-43d9-bf5d-df06d1d8a68e","html_url":"https://github.com/klauern/mcp-ynab","commit_stats":null,"previous_names":["klauern/mcp-ynab"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/klauern/mcp-ynab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauern%2Fmcp-ynab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauern%2Fmcp-ynab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauern%2Fmcp-ynab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauern%2Fmcp-ynab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/klauern","download_url":"https://codeload.github.com/klauern/mcp-ynab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klauern%2Fmcp-ynab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31668050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"online","status_checked_at":"2026-04-11T02:00:05.776Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-17T13:03:15.572Z","updated_at":"2026-04-11T03:48:10.177Z","avatar_url":"https://github.com/klauern.png","language":"Python","funding_links":[],"categories":["Finance \u0026 Fintech","Financial Data and Stock Market"],"sub_categories":["How to Submit"],"readme":"# MCP YNAB Server\n\nAn MCP server implementation that provides access to YNAB (You Need A Budget) functionality through the Model Context Protocol.\n\n## Features\n\n- View account balances and transactions\n- Create new transactions\n- Access YNAB data through standardized MCP resources\n\n## Installation\n\n```bash\nuv pip install -e .\n```\n\n## Configuration\n\nThe server requires a YNAB API key to function. You can obtain one from your [YNAB Developer Settings](https://app.ynab.com/settings/developer).\n\nThe API key can be provided through:\n\n1. Environment variable: `YNAB_API_KEY=your_api_key`\n2. MCP secret management system\n3. `.env` file in project root\n\n## Usage\n\n### Running the Server\n\n```bash\n# Development mode with hot reload and browser launch\ntask dev\n\n# Production install for Claude Desktop, Goose, or any other MCP-supported environment\ntask install\n```\n\n### Available Resources\n\n- `ynab://accounts` - List all YNAB accounts\n- `ynab://transactions/{account_id}` - Get recent transactions for a specific account\n\n### Available Tools\n\n- `create_transaction` - Create a new transaction\n- `get_account_balance` - Get the current balance of an account\n\n## Example Usage\n\n```python\n# Create a new transaction\nresult = await create_transaction(\n    account_id=\"your_account_id\",\n    amount=42.50,  # in dollars\n    payee_name=\"Coffee Shop\",\n    category_name=\"Dining Out\",\n    memo=\"Morning coffee\"\n)\n\n# Get account balance\nbalance = await get_account_balance(\"your_account_id\")\n\n# List accounts\naccounts = await ctx.read_resource(\"ynab://accounts\")\n\n# Get recent transactions\ntransactions = await ctx.read_resource(f\"ynab://transactions/{account_id}\")\n```\n\n## Development\n\n```bash\n# Install dependencies (uses uv)\ntask deps\n\n# Run all tests including integration tests (you will need a YNAB API key for this)\ntask test:all\n\n# Generate coverage report\ntask coverage\n\n# Format and lint code\ntask fmt  # Should add this to Taskfile\n```\n\n## Project Tasks\n\nThis project uses a Taskfile for common operations. Key commands:\n\n```bash\ntask dev       # Start dev server with auto-reload\ntask test      # Run unit tests\ntask coverage  # Generate test coverage report\ntask install   # Install production build\ntask deps      # Synchronize dependencies\n```\n\nSee [Taskfile.yml](Taskfile.yml) for all available tasks.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fklauern%2Fmcp-ynab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fklauern%2Fmcp-ynab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fklauern%2Fmcp-ynab/lists"}