tachibot-mcp 2.23.0 → 2.23.3

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/CHANGELOG.md CHANGED
@@ -5,6 +5,24 @@ All notable changes to TachiBot MCP will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.23.3] - 2026-06-17
9
+
10
+ ### Changed
11
+ - **GLM-5.1 → GLM-5.2** (`z-ai/glm-5.2`, released Jun 13 on OpenRouter, verified via grok_search + web): Zhipu's open-weights flagship for long-horizon tasks — usable 1M-token context (up from agentic-tier 5.1), two thinking-effort levels (High/Max). SWE-Bench Pro 62.1 (up from 58.4), Terminal-Bench 2.1 81.0 (up from 62.0); beats GPT-5.5 on several long-horizon coding benchmarks at ~1/6 the cost. List price $1.40/$4.40 per M (262K max output). Powers `glm_reason` and the `glm` juror. GLM-5.1 kept as quota fallback via `MODEL_FALLBACKS` (GLM-5.2 → GLM-5.1 → GLM-5); the `glm` substring already routes 5.2 to the 600s reasoning timeout.
12
+
13
+ ## [2.23.2] - 2026-06-15
14
+
15
+ ### Changed
16
+ - **Kimi K2.6 → K2.7-Code** (`moonshotai/kimi-k2.7-code`, released Jun 12 on OpenRouter, verified via grok_search): coding-specialized variant built on K2.6 — +21.8% on Kimi Code Bench v2 with lower token use, 262K context, native multimodal, always-thinking mode. List price $0.75/$3.50 per M. Now powers all Kimi tools — `kimi_thinking`, `kimi_code`, `kimi_decompose`, `kimi_long_context` (`openrouter-tools.ts`) and the `kimi` juror (`jury-tool.ts`). K2.6 kept as quota fallback via `MODEL_FALLBACKS` (K2.7-Code → K2.6 → K2-Thinking); the `kimi` substring already routes K2.7-Code to the 600s reasoning timeout (regression test added).
17
+
18
+ ### Notes
19
+ - No general-purpose Kimi K2.7 exists yet — K2.7-Code is the only post-K2.6 release. The coding-tuned model now also serves the reasoning/long-context tools and the kimi juror.
20
+
21
+ ## [2.23.1] - 2026-06-11
22
+
23
+ ### Changed
24
+ - **MiniMax M2.7 → M3** (`minimax/minimax-m3`, released May 31 on OpenRouter, API-verified via grok_search): 1M-token context (up from 200K), MSA sparse attention (~1/20 compute at 1M ctx vs prior gen), native multimodal, tuned for long-horizon agentic work. Same promo pricing as M2.7 ($0.30/$1.20 per M). Powers `minimax_code`, `minimax_agent`, and the `minimax` juror. M2.7 kept as quota fallback via `MODEL_FALLBACKS`.
25
+
8
26
  ## [2.23.0] - 2026-06-11
9
27
 
10
28
  ### Changed
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ### Multi-Model AI Orchestration Platform
6
6
 
7
- [![Version](https://img.shields.io/badge/version-2.15.2-blue.svg)](https://www.npmjs.com/package/tachibot-mcp)
7
+ [![Version](https://img.shields.io/badge/version-2.23.2-blue.svg)](https://www.npmjs.com/package/tachibot-mcp)
8
8
  [![Tools](https://img.shields.io/badge/tools-57_active-brightgreen.svg)](#-tool-ecosystem-57-tools)
9
9
  [![License](https://img.shields.io/badge/license-AGPL--3.0-green.svg)](LICENSE)
10
10
  [![Node](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org)
@@ -12,7 +12,7 @@
12
12
 
13
13
  **57 AI tools. 12 providers. One protocol.**
14
14
 
15
- Orchestrate Perplexity, Grok, GPT-5, Gemini, Qwen, Kimi K2.5, and MiniMax M2.5
15
+ Orchestrate Perplexity, Grok, GPT-5.5, Gemini, Qwen, Kimi K2.7-Code, and MiniMax M3
16
16
  from Claude Code, Claude Desktop, Cursor, or any MCP client.
17
17
 
18
18
  [Get Started](#-quick-start) · [View Tools](#-tool-ecosystem-57-tools) · [Documentation](https://tachibot.com/docs)
@@ -87,17 +87,20 @@ export const GROK_MODELS = {
87
87
  _3: "grok-3", // Legacy with search: 256K→2M
88
88
  };
89
89
  // Kimi Models (Moonshot AI via OpenRouter)
90
- // K2.6 released Apr 20, 2026 - 1T MoE, leads SWE-bench Pro for long-horizon coding
91
- // K2.5 released Jan 27, 2026 - kept as fallback
90
+ // K2.7-Code released Jun 12, 2026 - coding-specialized (built on K2.6), +21.8% on Kimi Code Bench v2, lower token use, 262K ctx, multimodal, always-thinking
91
+ // K2.6 released Apr 20, 2026 - 1T MoE, leads SWE-bench Pro for long-horizon coding (fallback)
92
+ // K2.5 released Jan 27, 2026 - kept as legacy
92
93
  export const KIMI_MODELS = {
93
94
  K2_THINKING: "moonshotai/kimi-k2-thinking", // 1T MoE, 32B active - agentic reasoning (256k context)
94
- K2_6: "moonshotai/kimi-k2.6", // CURRENT: 1T MoE, SWE-Pro leader, ~$0.74/$4.65
95
- K2_5: "moonshotai/kimi-k2.5", // Previous: multimodal + agent swarm (fallback)
95
+ K2_7_CODE: "moonshotai/kimi-k2.7-code", // CURRENT (Jun 12, 2026): coding-specialized, +21.8% Code Bench v2, 262K ctx, $0.75/$3.50
96
+ K2_6: "moonshotai/kimi-k2.6", // Previous (Apr 2026): 1T MoE, SWE-Pro leader (fallback)
97
+ K2_5: "moonshotai/kimi-k2.5", // Legacy: multimodal + agent swarm
96
98
  };
97
99
  // MiniMax Models (MiniMax via OpenRouter)
98
- // M2.7 released Mar 18, 2026 - Self-evolving, #1 AI Intelligence Index, SWE-Pro 56.22%
100
+ // M3 released May 31, 2026 - 1M ctx, MSA sparse attention (~1/20 compute at 1M), native multimodal
99
101
  export const MINIMAX_MODELS = {
100
- M2_7: "minimax/minimax-m2.7", // 2300B/100B MoE, 200K ctx, SWE-Pro 56.22%, Multi-SWE #1, $0.30/$1.20
102
+ M3: "minimax/minimax-m3", // 1M ctx, MSA sparse attention, multimodal, agentic/coding, $0.30/$1.20
103
+ M2_7: "minimax/minimax-m2.7", // 2300B/100B MoE, 200K ctx, SWE-Pro 56.22%, Multi-SWE #1 (fallback)
101
104
  M2_5: "minimax/minimax-m2.5", // SWE-Bench 80.2%, 37% faster than M2.1 (legacy)
102
105
  M2_1: "minimax/minimax-m2.1", // 230B/10B MoE - SWE-Bench 72.5% (legacy)
103
106
  };
@@ -185,10 +188,10 @@ export const CURRENT_MODELS = {
185
188
  reason: PERPLEXITY_MODELS.SONAR_REASONING, // sonar-reasoning-pro $2/$8 per M
186
189
  },
187
190
  openrouter: {
188
- kimi: KIMI_MODELS.K2_6, // K2.6 (Apr 2026): 1T MoE, SWE-bench Pro leader
191
+ kimi: KIMI_MODELS.K2_7_CODE, // K2.7-Code (Jun 2026): coding-specialized, built on K2.6
189
192
  qwen: QWEN_MODELS.CODER_NEXT, // Qwen3-Coder-Next: 80B/3B MoE, 262K ctx, SWE >70% (no 3.6-coder yet)
190
193
  qwen_reason: QWEN_MODELS.MAX_THINKING, // 235B MoE thinking mode (HMMT 98%) — still best for reasoning
191
- minimax: MINIMAX_MODELS.M2_7, // M2.7: SWE-Pro 56.22%, Multi-SWE #1, self-evolving
194
+ minimax: MINIMAX_MODELS.M3, // M3: 1M ctx, MSA sparse attention, agentic/coding
192
195
  }
193
196
  };
194
197
  // Tool-specific defaults - References CURRENT_MODELS for easy bumping
@@ -303,18 +306,18 @@ export const TOOL_DEFAULTS = {
303
306
  temperature: 0.3, // Lower for precise reasoning
304
307
  },
305
308
  kimi_thinking: {
306
- model: KIMI_MODELS.K2_6, // K2.6 (Apr 2026): 1T MoE, SWE-bench Pro leader
309
+ model: KIMI_MODELS.K2_7_CODE, // K2.7-Code (Jun 2026): coding-specialized, built on K2.6
307
310
  maxTokens: 16000,
308
311
  temperature: 0.7,
309
312
  },
310
313
  // MiniMax tools - VERY CHEAP, open source
311
314
  minimax_code: {
312
- model: MINIMAX_MODELS.M2_7, // SWE-Pro 56.22%, Multi-SWE #1
315
+ model: MINIMAX_MODELS.M3, // 1M ctx, MSA sparse attention, agentic/coding
313
316
  maxTokens: 4000,
314
317
  temperature: 0.3, // Lower for precise code
315
318
  },
316
319
  minimax_agent: {
317
- model: MINIMAX_MODELS.M2_7, // SWE-Pro 56.22%, self-evolving, #1 AI Intelligence Index
320
+ model: MINIMAX_MODELS.M3, // 1M ctx, multimodal, long-horizon agentic work
318
321
  maxTokens: 4000,
319
322
  temperature: 0.5, // Balanced for agentic tasks
320
323
  },
@@ -369,6 +372,7 @@ export const MODEL_DISPLAY_NAMES = {
369
372
  "sonar-reasoning-pro": "perplexity-reason",
370
373
  // Kimi (Moonshot)
371
374
  "moonshotai/kimi-k2-thinking": "kimi-k2",
375
+ "moonshotai/kimi-k2.7-code": "kimi-k2.7-code",
372
376
  "moonshotai/kimi-k2.6": "kimi-k2.6",
373
377
  "moonshotai/kimi-k2.5": "kimi-k2.5",
374
378
  "moonshotai/kimi-k2.5-thinking": "kimi-k2.5",
@@ -381,6 +385,7 @@ export const MODEL_DISPLAY_NAMES = {
381
385
  "qwen/qwen3-max-thinking": "qwen-max",
382
386
  "qwen/qwen3-235b-a22b-thinking-2507": "qwen-235b-thinking",
383
387
  // MiniMax
388
+ "minimax/minimax-m3": "minimax-m3",
384
389
  "minimax/minimax-m2.7": "minimax-m2.7",
385
390
  "minimax/minimax-m2.5": "minimax-m2.5",
386
391
  "minimax/minimax-m2.1": "minimax-m2.1",
@@ -422,6 +427,7 @@ export const MODEL_PRICING = {
422
427
  "sonar-reasoning-pro": 0.006, // avoid - expensive reasoning tokens
423
428
  // OpenRouter models - Kimi
424
429
  "moonshotai/kimi-k2-thinking": 0.002,
430
+ "moonshotai/kimi-k2.7-code": 0.002125, // ($0.75 + $3.50) / 2 / 1000 (Jun 12, 2026)
425
431
  "moonshotai/kimi-k2.6": 0.0027, // ($0.74 + $4.65) / 2 / 1000 (Apr 2026)
426
432
  "moonshotai/kimi-k2.5": 0.003,
427
433
  "moonshotai/kimi-k2.5-thinking": 0.003,
@@ -434,7 +440,8 @@ export const MODEL_PRICING = {
434
440
  "qwen/qwen3-max-thinking": 0.005,
435
441
  "qwen/qwen3-235b-a22b-thinking-2507": 0.000822, // ($0.15 + $1.50) / 2 / 1000
436
442
  // OpenRouter models - MiniMax (VERY CHEAP!)
437
- "minimax/minimax-m2.7": 0.00075, // ($0.30 + $1.20) / 2 / 1000 - flagship
443
+ "minimax/minimax-m3": 0.00075, // ($0.30 + $1.20) / 2 / 1000 - flagship (promo pricing)
444
+ "minimax/minimax-m2.7": 0.00075, // ($0.30 + $1.20) / 2 / 1000 - fallback
438
445
  "minimax/minimax-m2.5": 0.000685, // legacy
439
446
  "minimax/minimax-m2.1": 0.000685, // legacy
440
447
  };
@@ -28,8 +28,8 @@ const MODELS = {
28
28
  // OpenRouter
29
29
  QWEN: QWEN_MODELS.CODER_NEXT, // qwen/qwen3-coder-next (80B/3B MoE, 262K ctx)
30
30
  QWEN_REASON: QWEN_MODELS.MAX_THINKING, // qwen/qwen3-235b-a22b-thinking (235B MoE)
31
- KIMI: KIMI_MODELS.K2_6, // moonshotai/kimi-k2.6 (Apr 2026 - SWE-bench Pro leader)
32
- MINIMAX: MINIMAX_MODELS.M2_7, // minimax/minimax-m2.7 (SWE-Pro 56.22%, #1 AI Intelligence Index)
31
+ KIMI: KIMI_MODELS.K2_7_CODE, // moonshotai/kimi-k2.7-code (Jun 2026 - coding-specialized, built on K2.6)
32
+ MINIMAX: MINIMAX_MODELS.M3, // minimax/minimax-m3 (May 2026 - 1M ctx, MSA sparse attention)
33
33
  };
34
34
  /**
35
35
  * Get Scout model configuration
@@ -36,8 +36,8 @@ export function getTimeoutConfig() {
36
36
  * Thinking/reasoning/swarm models get extended timeout (600s default).
37
37
  * Standard models get 180s default.
38
38
  *
39
- * NOTE: All Kimi K2 variants (incl. 'moonshotai/kimi-k2.6') run the Agent Swarm
40
- * and need the extended timeout — but their model IDs don't contain 'thinking',
39
+ * NOTE: All Kimi K2 variants (incl. 'moonshotai/kimi-k2.7-code', which is always in
40
+ * thinking mode) need the extended timeout — but their model IDs don't contain 'thinking',
41
41
  * so we match 'kimi' explicitly. Same applies to DeepSeek V4 and Zhipu GLM, whose
42
42
  * reasoning passes are slow but whose IDs lack the 'thinking'/'reasoning' marker.
43
43
  * This keeps primary and fallback consistent and lets these tools inherit 600s
@@ -9,7 +9,7 @@ export * from './memory-manager.js';
9
9
  // Provider exports
10
10
  export * from './providers/local-provider.js';
11
11
  export * from './providers/mem0-provider.js';
12
- // export * from './providers/dokoro-provider.js';
12
+ export * from './providers/dokoro-provider.js';
13
13
  // export * from './providers/hybrid-provider.js';
14
14
  // Main API
15
15
  export { getMemoryManager, resetMemoryManager, HierarchicalMemoryManager } from './memory-manager.js';
@@ -109,9 +109,8 @@ export function validateMemoryConfig(config) {
109
109
  if (config.provider === 'mem0' && !config.mem0?.apiKey && !process.env.MEM0_API_KEY) {
110
110
  errors.push('Mem0 provider requires API key (MEM0_API_KEY or config.mem0.apiKey)');
111
111
  }
112
- if (config.provider === 'dokoro' && !config.dokoro?.connectionString && !process.env.DOKORO_CONNECTION) {
113
- errors.push('Dokoro provider requires connection string');
114
- }
112
+ // Dokoro is file-backed: connectionString is optional (falls back to
113
+ // DOKORO_PATH env or {cwd}/dokoro), so no validation needed here.
115
114
  if (config.provider === 'local' && !config.local?.path) {
116
115
  errors.push('Local provider requires storage path');
117
116
  }
@@ -6,7 +6,7 @@ import { mergeMemoryConfig, validateMemoryConfig } from './memory-config.js';
6
6
  import { LocalProvider } from './providers/local-provider.js';
7
7
  import { Mem0Provider } from './providers/mem0-provider.js';
8
8
  import { randomBytes } from 'crypto';
9
- // import { DokoroProvider } from './providers/dokoro-provider.js';
9
+ import { DokoroProvider } from './providers/dokoro-provider.js';
10
10
  // import { HybridProvider } from './providers/hybrid-provider.js';
11
11
  /**
12
12
  * Main memory manager that coordinates all providers
@@ -245,9 +245,15 @@ export class HierarchicalMemoryManager {
245
245
  return null;
246
246
  }
247
247
  case 'dokoro':
248
- // TODO: Implement Dokoro provider
249
- console.warn('Dokoro provider not yet implemented');
250
- return null;
248
+ try {
249
+ const provider = new DokoroProvider(this.config.dokoro || {});
250
+ await provider.initialize();
251
+ return provider;
252
+ }
253
+ catch (error) {
254
+ console.error('Failed to create Dokoro provider:', error);
255
+ return null;
256
+ }
251
257
  case 'local':
252
258
  return await this.createLocalProvider();
253
259
  case 'hybrid':