{"id":31747479,"url":"https://github.com/cnayan/minimal-google-calendar-mcp-server","last_synced_at":"2025-10-09T13:39:23.016Z","repository":{"id":307258552,"uuid":"1028888065","full_name":"cnayan/minimal-google-calendar-mcp-server","owner":"cnayan","description":"Minimal Google Calendar MCP Server","archived":false,"fork":false,"pushed_at":"2025-07-30T08:21:18.000Z","size":162,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-30T10:34:47.258Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cnayan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2025-07-30T07:57:13.000Z","updated_at":"2025-07-30T08:21:22.000Z","dependencies_parsed_at":"2025-07-30T10:44:57.816Z","dependency_job_id":null,"html_url":"https://github.com/cnayan/minimal-google-calendar-mcp-server","commit_stats":null,"previous_names":["cnayan/minimal-google-calendar-mcp-server"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/cnayan/minimal-google-calendar-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnayan%2Fminimal-google-calendar-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnayan%2Fminimal-google-calendar-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnayan%2Fminimal-google-calendar-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnayan%2Fminimal-google-calendar-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cnayan","download_url":"https://codeload.github.com/cnayan/minimal-google-calendar-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cnayan%2Fminimal-google-calendar-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001480,"owners_count":26083102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"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-10-09T13:38:52.680Z","updated_at":"2025-10-09T13:39:23.010Z","avatar_url":"https://github.com/cnayan.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Google Calendar Events MCP Server\r\n\r\nUses Google Calendar API method to fetch upcoming events only.\r\n\r\n## Test output:\r\n\r\n\u003cimg src=\"./images/output.png\" width=\"95%\" alt=\"Sample output from the MCP server for calendar events\"/\u003e\r\n\r\n## Pre-requisites\r\nCreate an app on GCP and get client secret.\r\n- Set up your Google Workspace project and Auth Platform by following [Google's documentation](https://developers.google.com/workspace/calendar/api/quickstart/python)\r\n- Download the client secret JSON and keep in the repo base folder as `credentials.json`\r\n\r\n### Run MCP Server\r\n\r\n```cmd\r\nuv venv\r\nuv sync\r\nuv run src/tool.py\r\n```\r\n\r\n### Add to Claude Desktop [Windows Setting]\r\nNote: You must have it installed.\r\n\r\nOpen file in Notepad: __%USERPROFILE%\\AppData\\Roaming\\Claude\\claude_desktop_config.json__\r\n\r\nAdd the MCP server entry to the JSON:\r\n\r\n```json\r\n\"gcal-mcp\": {\r\n    \"command\": \u003cPATH TO uv.exe\u003e,\r\n    \"args\": [\r\n        \"--directory\",\r\n        \u003cPATH TO THE MCP SERVER FOLDER\u003e,\r\n        \"run\",\r\n        \"src\\\\tool.py\"\r\n    ]\r\n}\r\n```\r\n\r\nIt may look like this finally:\r\n\r\n```json\r\n{\r\n\t\"mcpServers\": {\r\n\t\t\"gcal-mcp\": {\r\n\t\t\t\"command\": \"%USERPROFILE%\\\\Miniconda3\\\\Scripts\\\\uv.exe\",\r\n\t\t\t\"args\": [\r\n\t\t\t\t\"--directory\",\r\n\t\t\t\t\"E:\\\\Dev\\\\mcp\\\\servers\\\\gcal\",\r\n\t\t\t\t\"run\",\r\n\t\t\t\t\"src\\\\tool.py\"\r\n\t\t\t]\r\n\t\t}\r\n\t}\r\n}\r\n```\r\n\r\nIt should look like this in Claude Desktop\r\n\r\n\u003cimg src=\"./images/claude_gcp_servers.png\" width=\"95%\" alt=\"Running MCP server for Claude Desktop\"/\u003e\r\n\r\n## Note\r\nI use Miniconda. Hence the path to UV shows up this way. If you have different setup, you will have to figure out where UV.exe is installed.\r\n\u003cbr\u003eUV setup guide: https://docs.astral.sh/uv/getting-started/installation/\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcnayan%2Fminimal-google-calendar-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcnayan%2Fminimal-google-calendar-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcnayan%2Fminimal-google-calendar-mcp-server/lists"}