docs: initial planning artifacts for fjmcp-broker
Establish project scope, architecture, and phased implementation plan for an OAuth 2.1 broker that fronts forgejo-mcp, delegating user authentication to Forgejo and spawning a per-session stdio forgejo-mcp subprocess scoped to each authenticated user's token. No code yet — planning only. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
commit
2c7b50012c
4 changed files with 539 additions and 0 deletions
31
.gitignore
vendored
Normal file
31
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Binaries
|
||||
/fjmcp-broker
|
||||
/dist/
|
||||
*.exe
|
||||
|
||||
# Go build artifacts
|
||||
*.test
|
||||
*.out
|
||||
/vendor/
|
||||
|
||||
# SQLite data files (broker token store)
|
||||
*.db
|
||||
*.db-journal
|
||||
*.db-wal
|
||||
*.db-shm
|
||||
/data/
|
||||
|
||||
# Environment / secrets
|
||||
.env
|
||||
.env.local
|
||||
*.pem
|
||||
*.key
|
||||
|
||||
# Editor / OS
|
||||
.idea/
|
||||
.vscode/
|
||||
.DS_Store
|
||||
*.swp
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
Loading…
Add table
Add a link
Reference in a new issue