feat(server): add actions and wiki tools #16
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/actions-wiki-tools-fjmcp-15"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Expose every operation in fj_core::actions (15 tools) and fj_core::wiki (3 tools) as MCP tools, completing the FJMCP-9 full-coverage criterion. Each tool is tagged with its FJMCP-10 permission tier: READ tools run unconditionally, EDIT-tier tools (create/update variables, create_repo_secret, dispatch_workflow) call self.require(Tier::Edit)?, and DELETE-tier tools (delete variables and secret) call self.require(Tier::Delete)?.
Action secrets are write-only by design: list_repo_secrets returns names only, create_repo_secret warns that its data argument is a sensitive credential stored write-only, and there is no get-secret-value tool because the Forgejo API never exposes secret values.
Update the get_info instructions and the README tool tables for all 18 new tools.
#FJMCP-15