{"id":30803208,"url":"https://github.com/nsvk13/forgejo-mcp-server","last_synced_at":"2025-09-05T22:49:59.368Z","repository":{"id":312495979,"uuid":"1047491750","full_name":"nsvk13/forgejo-mcp-server","owner":"nsvk13","description":"Forgejo Self-Hosted Integration with Claude MCP (AI Assistant)","archived":false,"fork":false,"pushed_at":"2025-08-31T02:08:08.000Z","size":188,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-31T04:11:54.099Z","etag":null,"topics":["claude","forgejo","forgejo-mcp-server","git","gitea","mcp-server"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nsvk13.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-30T14:42:58.000Z","updated_at":"2025-08-31T02:10:37.000Z","dependencies_parsed_at":"2025-08-31T04:11:59.062Z","dependency_job_id":"c8aca902-e7eb-4088-89fa-f9fbe4f03609","html_url":"https://github.com/nsvk13/forgejo-mcp-server","commit_stats":null,"previous_names":["nsvk13/forgejo-mcp-server"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/nsvk13/forgejo-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsvk13%2Fforgejo-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsvk13%2Fforgejo-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsvk13%2Fforgejo-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsvk13%2Fforgejo-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nsvk13","download_url":"https://codeload.github.com/nsvk13/forgejo-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsvk13%2Fforgejo-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273833293,"owners_count":25176279,"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-09-05T02:00:09.113Z","response_time":402,"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":["claude","forgejo","forgejo-mcp-server","git","gitea","mcp-server"],"created_at":"2025-09-05T22:49:57.663Z","updated_at":"2025-09-05T22:49:59.327Z","avatar_url":"https://github.com/nsvk13.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Forgejo MCP Server\n\nA Model Context Protocol (MCP) server that provides Claude Desktop with tools to interact with Forgejo repositories.\n\n![Forgejo MCP Server](.github/img/image.png)\n\n## Features\n\n- List repositories\n- Get repository information\n- List issues with filtering by state\n- Create new issues\n- Read file contents from repositories\n\n## Installation\n\n```bash\ngit clone https://github.com/nsvk13/forgejo-mcp-server\ncd forgejo-mcp-server\nbun install\nbun run build\n```\n\n## Configuration\n\n### Environment Variables\n\nSet the following environment variables:\n\n- `FORGEJO_BASE_URL`: Your Forgejo instance URL (e.g., `https://your-forgejo.com`)\n- `FORGEJO_TOKEN`: Your Forgejo API token\n\n### Generating a Forgejo API Token\n\n1. Go to your Forgejo instance\n2. Navigate to Settings → Applications\n3. Generate a new token with appropriate permissions\n4. Copy the token for use in configuration\n\n### Claude Desktop Configuration\n\nAdd the following to your Claude Desktop configuration file:\n\n**Windows**: `%APPDATA%\\Claude\\claude_desktop_config.json`\n**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"forgejo\": {\n      \"command\": \"node\",\n      \"args\": [\"/absolute/path/to/forgejo-mcp-server/dist/index.js\"],\n      \"env\": {\n        \"FORGEJO_BASE_URL\": \"https://your-forgejo-instance.com\",\n        \"FORGEJO_TOKEN\": \"your_api_token_here\"\n      }\n    }\n  }\n}\n```\n\nReplace the path and credentials with your actual values.\n\n## Usage\n\nAfter configuration, restart Claude Desktop. You can then use commands like:\n\n- \"List my Forgejo repositories\"\n- \"Show issues in repository owner/repo-name\"\n- \"Create an issue in repository with title 'Bug report'\"\n- \"Show the contents of README.md from repository\"\n\n## Available Tools\n\n- `list_repositories`: Get list of user repositories\n- `get_repository`: Get detailed repository information\n- `list_issues`: List issues with optional state filtering\n- `create_issue`: Create a new issue\n- `get_file_content`: Read file contents from repository\n\n## Development\n\n```bash\n# Build the project\nbun run build\n\n# Run in development mode\nbun run dev\n```\n\n## Requirements\n\n- Bun 1 or higher\n- TypeScript\n- Valid Forgejo instance with API access","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsvk13%2Fforgejo-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnsvk13%2Fforgejo-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsvk13%2Fforgejo-mcp-server/lists"}