Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
afaf399
make main module check compatible with windows paths
WSJUSA Aug 28, 2025
879d52f
Fix description formatting for OpenProject work packages
WSJUSA Aug 28, 2025
1b1d52a
add new tool to set the status on a work package task
WSJUSA Aug 29, 2025
7df35bc
feat: Implement comprehensive User Project Membership Management system
WSJUSA Aug 29, 2025
5efda6c
fix: Transform OpenProject API _links structure to resolve "Unknown" …
WSJUSA Aug 29, 2025
e75099a
fix: Fix update_work_package status display showing "Unknown"
WSJUSA Aug 29, 2025
6b59084
refactor: Consolidate duplicate _links transformation code
WSJUSA Aug 29, 2025
aede4d3
feat: implement upload attachment functionality (ticket 120)
WSJUSA Sep 3, 2025
47339ce
Refactor upload_attachment tool to accept file path instead of base64…
WSJUSA Sep 3, 2025
0d74d00
Fix sortBy parameter formatting for OpenProject API
WSJUSA Sep 3, 2025
0abec22
feat: add upload attachment tools for OpenProject MCP
WSJUSA Sep 3, 2025
47f399e
Merge branch 'feature/upload-attachments' into main
WSJUSA Sep 3, 2025
4bc1038
feat: Add create_task tool to OpenProject MCP
WSJUSA Sep 3, 2025
3aea5e4
remove unwanted coding file
WSJUSA Sep 4, 2025
3d12886
add ignore local coding agent rules
WSJUSA Sep 4, 2025
c2f3d34
Merge branch 'main' into feat/create-task-tool-140
WSJUSA Sep 4, 2025
2f81561
feat(attachments): add download_attachment tool and fix relative href…
WSJUSA Sep 4, 2025
5ad8774
Merge feature: download_attachment tool for attachments (ticket 139)
WSJUSA Sep 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,7 @@ jspm_packages/

# Test files
test-*.js
test-*.cjs
test-*.cjs

# Coding Agent files
.cursor/*
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"form-data": "^4.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/form-data": "^2.5.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
Expand Down
Loading