Loading...
Loading...
MeisterTask integration. Manage Projects, Users, Roles. Use when the user wants to interact with MeisterTask data.
npx skill4agent add membranedev/application-skills meistertaskmembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search meistertask --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Tasks | list-tasks | Get all available tasks the authenticated user has access to |
| List Projects | list-projects | Get all available projects the authenticated user has access to |
| List Project Tasks | list-project-tasks | Get all tasks in a specific project |
| List Project Sections | list-project-sections | Get all sections in a specific project |
| List Task Comments | list-task-comments | Get all comments on a task |
| Get Task | get-task | Retrieve a single task by its ID |
| Get Project | get-project | Retrieve a single project by its ID |
| Get Section | get-section | Retrieve a single section by its ID |
| Get Comment | get-comment | Retrieve a single comment by its ID |
| Create Task | create-task | Create a new task in a section |
| Create Project | create-project | Create a new project |
| Create Section | create-section | Create a new section in a project |
| Create Comment | create-comment | Create a new comment on a task |
| Update Task | update-task | Update an existing task |
| Update Project | update-project | Update an existing project |
| Update Section | update-section | Update an existing section |
| List Project Labels | list-project-labels | Get all labels (tags) in a specific project |
| Create Label | create-label | Create a new label (tag) in a project |
| List Persons | list-persons | Get all persons the authenticated user has access to |
| Get Current User | get-current-user | Get the currently authenticated user's profile |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY