agent-planner-mcp 1.5.14 → 1.5.15
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/package.json +1 -1
- package/src/api-client.js +7 -0
- package/src/tools/bdi/utility.js +14 -2
package/package.json
CHANGED
package/src/api-client.js
CHANGED
|
@@ -1087,6 +1087,12 @@ function createApiClient(token, options = {}) {
|
|
|
1087
1087
|
// Export the axios instance for direct use
|
|
1088
1088
|
const axiosInstance = apiClient;
|
|
1089
1089
|
|
|
1090
|
+
// ─── System ───────────────────────────────────────────────────
|
|
1091
|
+
// Operational metadata about the backend the MCP is talking to.
|
|
1092
|
+
const system = {
|
|
1093
|
+
version: () => apiClient.get('/version').then(r => r.data),
|
|
1094
|
+
};
|
|
1095
|
+
|
|
1090
1096
|
// ─── Coherence ────────────────────────────────────────────────
|
|
1091
1097
|
const coherence = {
|
|
1092
1098
|
getPending: () => apiClient.get('/coherence/pending').then(r => r.data),
|
|
@@ -1112,6 +1118,7 @@ module.exports = {
|
|
|
1112
1118
|
coherence,
|
|
1113
1119
|
users,
|
|
1114
1120
|
agentLoop,
|
|
1121
|
+
system,
|
|
1115
1122
|
v1,
|
|
1116
1123
|
axiosInstance, // Export for direct API calls
|
|
1117
1124
|
createApiClient // Factory for per-session clients (HTTP mode)
|
package/src/tools/bdi/utility.js
CHANGED
|
@@ -19,10 +19,22 @@ const getStartedDefinition = {
|
|
|
19
19
|
},
|
|
20
20
|
};
|
|
21
21
|
|
|
22
|
-
async function getStartedHandler(args) {
|
|
22
|
+
async function getStartedHandler(args, apiClient) {
|
|
23
|
+
// Best-effort backend version so one call shows which builds are in play
|
|
24
|
+
// (the MCP and the API it is actually talking to are deployed separately).
|
|
25
|
+
let api = { version: 'unavailable' };
|
|
26
|
+
try {
|
|
27
|
+
if (apiClient?.system?.version) api = await apiClient.system.version();
|
|
28
|
+
} catch {
|
|
29
|
+
api = { version: 'unavailable' };
|
|
30
|
+
}
|
|
31
|
+
|
|
23
32
|
return formatResponse({
|
|
24
33
|
as_of: asOf(),
|
|
25
34
|
mcp_version: MCP_VERSION,
|
|
35
|
+
api_url: process.env.API_URL || 'http://localhost:3000',
|
|
36
|
+
api_version: api.version,
|
|
37
|
+
api_build: api.commit ? { commit: api.commit, started_at: api.started_at } : undefined,
|
|
26
38
|
overview:
|
|
27
39
|
"AgentPlanner exposes a BDI-aligned MCP surface. Tools are grouped by " +
|
|
28
40
|
"Beliefs (state queries), Desires (goals), and Intentions (committed actions). " +
|
|
@@ -31,7 +43,7 @@ async function getStartedHandler(args) {
|
|
|
31
43
|
beliefs: ['briefing', 'list_plans', 'task_context', 'goal_state', 'recall_knowledge', 'search', 'plan_analysis'],
|
|
32
44
|
desires: ['list_goals', 'create_goal', 'update_goal', 'derive_subgoal'],
|
|
33
45
|
intentions: ['form_intention', 'extend_intention', 'link_intentions', 'propose_research_chain', 'claim_next_task', 'update_task', 'update_node', 'release_task', 'queue_decision', 'resolve_decision', 'add_learning'],
|
|
34
|
-
workspaces: ['list_workspaces', 'create_workspace', 'list_blueprints', 'fork_blueprint', 'save_as_blueprint'],
|
|
46
|
+
workspaces: ['list_workspaces', 'create_workspace', 'list_blueprints', 'fork_blueprint', 'save_as_blueprint', 'delete_blueprint'],
|
|
35
47
|
},
|
|
36
48
|
recommended_workflows: [
|
|
37
49
|
{
|