harness-mcp-v2 3.2.6 → 3.2.7

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.
Files changed (61) hide show
  1. package/README.md +4 -4
  2. package/build/data/schemas/v0/pipeline.d.ts.map +1 -1
  3. package/build/data/schemas/v0/pipeline.js +1985 -398
  4. package/build/data/schemas/v0/pipeline.js.map +1 -1
  5. package/build/data/schemas/v0/template.d.ts.map +1 -1
  6. package/build/data/schemas/v0/template.js +4143 -2125
  7. package/build/data/schemas/v0/template.js.map +1 -1
  8. package/build/data/schemas/v1/pipeline.d.ts.map +1 -1
  9. package/build/data/schemas/v1/pipeline.js +18 -20
  10. package/build/data/schemas/v1/pipeline.js.map +1 -1
  11. package/build/data/schemas/v1/template.d.ts.map +1 -1
  12. package/build/data/schemas/v1/template.js +18 -20
  13. package/build/data/schemas/v1/template.js.map +1 -1
  14. package/build/index.js +3 -3
  15. package/build/index.js.map +1 -1
  16. package/build/registry/extractors.d.ts +5 -0
  17. package/build/registry/extractors.d.ts.map +1 -1
  18. package/build/registry/extractors.js +6 -0
  19. package/build/registry/extractors.js.map +1 -1
  20. package/build/registry/toolsets/ai-evals.d.ts.map +1 -1
  21. package/build/registry/toolsets/ai-evals.js +10 -12
  22. package/build/registry/toolsets/ai-evals.js.map +1 -1
  23. package/build/registry/toolsets/ccm.d.ts.map +1 -1
  24. package/build/registry/toolsets/ccm.js +114 -12
  25. package/build/registry/toolsets/ccm.js.map +1 -1
  26. package/build/search/entity-index.d.ts +14 -0
  27. package/build/search/entity-index.d.ts.map +1 -0
  28. package/build/search/entity-index.js +88 -0
  29. package/build/search/entity-index.js.map +1 -0
  30. package/build/search/manager.d.ts.map +1 -1
  31. package/build/search/manager.js +16 -12
  32. package/build/search/manager.js.map +1 -1
  33. package/build/tools/harness-execute.d.ts.map +1 -1
  34. package/build/tools/harness-execute.js +18 -9
  35. package/build/tools/harness-execute.js.map +1 -1
  36. package/build/tools/harness-get.d.ts.map +1 -1
  37. package/build/tools/harness-get.js +4 -6
  38. package/build/tools/harness-get.js.map +1 -1
  39. package/build/tools/harness-list.d.ts.map +1 -1
  40. package/build/tools/harness-list.js +4 -6
  41. package/build/tools/harness-list.js.map +1 -1
  42. package/build/tools/harness-search.d.ts.map +1 -1
  43. package/build/tools/harness-search.js +2 -0
  44. package/build/tools/harness-search.js.map +1 -1
  45. package/build/utils/http-app.d.ts +13 -0
  46. package/build/utils/http-app.d.ts.map +1 -0
  47. package/build/utils/http-app.js +27 -0
  48. package/build/utils/http-app.js.map +1 -0
  49. package/build/utils/runtime-input-resolver.d.ts +10 -0
  50. package/build/utils/runtime-input-resolver.d.ts.map +1 -1
  51. package/build/utils/runtime-input-resolver.js +216 -0
  52. package/build/utils/runtime-input-resolver.js.map +1 -1
  53. package/build/utils/svg/render-png-child.d.ts +2 -0
  54. package/build/utils/svg/render-png-child.d.ts.map +1 -0
  55. package/build/utils/svg/render-png-child.js +30 -0
  56. package/build/utils/svg/render-png-child.js.map +1 -0
  57. package/build/utils/svg/render-png.d.ts +4 -4
  58. package/build/utils/svg/render-png.d.ts.map +1 -1
  59. package/build/utils/svg/render-png.js +101 -14
  60. package/build/utils/svg/render-png.js.map +1 -1
  61. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Harness MCP Server 2.0
2
2
 
3
- An MCP (Model Context Protocol) server that gives AI agents full access to the Harness.io platform through 11 consolidated tools and 218 resource types.
3
+ An MCP (Model Context Protocol) server that gives AI agents full access to the Harness.io platform through 11 consolidated tools and 219 resource types.
4
4
 
5
5
  ## Why Use This MCP Server
6
6
 
@@ -8,7 +8,7 @@ Most MCP servers map one tool per API endpoint. For a platform as broad as Harne
8
8
 
9
9
  This server is built differently:
10
10
 
11
- - **11 tools, 218 resource types.** A registry-based dispatch system routes `harness_list`, `harness_get`, `harness_create`, etc. to any Harness resource — pipelines, services, environments, orgs, projects, feature flags, cost data, and more. The LLM picks from 11 tools instead of hundreds.
11
+ - **11 tools, 219 resource types.** A registry-based dispatch system routes `harness_list`, `harness_get`, `harness_create`, etc. to any Harness resource — pipelines, services, environments, orgs, projects, feature flags, cost data, and more. The LLM picks from 11 tools instead of hundreds.
12
12
  - **Full platform coverage.** 38 default toolsets spanning CI/CD, GitOps, Feature Flags, Cloud Cost Management, Security Testing, Chaos Engineering, Database DevOps, Internal Developer Portal, Software Supply Chain, Infrastructure as Code Management, Governance, Service Overrides, Knowledge Graph, Visualizations, and more. Opt-in Ansible coverage is available when you need inventory and playbook data.
13
13
  - **Multi-project workflows out of the box.** Agents discover organizations and projects dynamically — no hardcoded env vars needed. Ask "show failed executions across all projects" and the agent can navigate the full account hierarchy.
14
14
  - **32 prompt templates.** Pre-built prompts for common workflows: build & deploy apps end-to-end, debug failed pipelines, review DORA metrics, triage vulnerabilities, optimize cloud costs, audit access control, plan feature flag rollouts, review pull requests, approve pending pipelines, and more.
@@ -1197,7 +1197,7 @@ Harness pipelines can be stored in three ways:
1197
1197
 
1198
1198
  ## Resource Types
1199
1199
 
1200
- 218 resource types organized across 38 toolsets. Each resource type supports a subset of CRUD operations and optional execute actions.
1200
+ 219 resource types organized across 38 toolsets. Each resource type supports a subset of CRUD operations and optional execute actions.
1201
1201
 
1202
1202
  ### Platform
1203
1203
 
@@ -1853,7 +1853,7 @@ Available toolset names:
1853
1853
  +--------v---------+
1854
1854
  | Registry | <-- Declarative resource definitions
1855
1855
  | 38 Toolsets | (data files, not code)
1856
- | 218 Resource Types|
1856
+ | 219 Resource Types|
1857
1857
  +--------+---------+
1858
1858
  |
1859
1859
  +--------v---------+
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline.d.ts","sourceRoot":"","sources":["../../../../src/data/schemas/v0/pipeline.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CA8yoH/B,CAAC;AACF,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"pipeline.d.ts","sourceRoot":"","sources":["../../../../src/data/schemas/v0/pipeline.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAi2rH/B,CAAC;AACF,eAAe,MAAM,CAAC"}