wolfpack-mcp 1.0.51 → 1.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/dist/agentBuilderTools.js +232 -81
- package/dist/agentSelfTools.js +124 -0
- package/dist/client.js +178 -65
- package/dist/config.js +4 -0
- package/dist/index.js +37 -7
- package/dist/procedureTools.js +208 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,6 +92,25 @@ npx wolfpack-mcp
|
|
|
92
92
|
| **Journal** | "Log my standup notes" / "What did I work on last week?" |
|
|
93
93
|
| **Radar** | "What initiatives are in progress?" / "Show the roadmap" |
|
|
94
94
|
|
|
95
|
+
## Multiple Organisations
|
|
96
|
+
|
|
97
|
+
If you belong to multiple organisations, agent builder tools (agents, templates, skills, LLM models) need to know which org to operate on. You can:
|
|
98
|
+
|
|
99
|
+
- Use `list_organisations` to see your orgs
|
|
100
|
+
- Pass `org_slug` to any agent builder tool to target a specific org
|
|
101
|
+
- Or pre-select a default org with the `WOLFPACK_ORG_SLUG` environment variable:
|
|
102
|
+
|
|
103
|
+
```json
|
|
104
|
+
{
|
|
105
|
+
"env": {
|
|
106
|
+
"WOLFPACK_API_KEY": "wfp_sk_your_api_key_here",
|
|
107
|
+
"WOLFPACK_ORG_SLUG": "your-org-slug"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
If you only belong to one organisation, this is handled automatically.
|
|
113
|
+
|
|
95
114
|
## Multiple Projects
|
|
96
115
|
|
|
97
116
|
If you belong to multiple project teams, your AI assistant will ask which team you mean, or you can specify:
|