edition-mcp-server 0.2.2 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -120,11 +120,11 @@ server.tool("memory_context", "現在のセッション状態(有効な事実
120
120
  return { content: [{ type: "text", text }] };
121
121
  });
122
122
  // ── Tool: memory_extract ────────────────────────────
123
- server.tool("memory_extract", "テキストからファクトを自動抽出します。日本語の敬語・主語省略・社会的階層を分析して構造化します。store=trueで永続保存。", {
123
+ server.tool("memory_extract", "テキストからファクト(主語→述語→目的語の三つ組)を自動抽出します。日本語の敬語・主語省略・社会的階層を分析して構造化します。store=trueにすると抽出結果をメモリに永続保存します(書き込み発生)。store=false(デフォルト)なら読み取り専用で、保存せずに抽出結果のみ返します。memory_storeとの違い: memory_storeはエピソード全体を保存、memory_extractはテキストからファクトのみを抽出。", {
124
124
  text: zod_1.z.string().describe("ファクトを抽出するテキスト"),
125
125
  context_hint: zod_1.z.string().default("").describe("コンテキストヒント(例: ビジネスミーティング)"),
126
- store: zod_1.z.boolean().default(false).describe("抽出したファクトを永続保存するか"),
127
- }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true }, async ({ text, context_hint, store }) => {
126
+ store: zod_1.z.boolean().default(false).describe("抽出したファクトを永続保存するか(trueで書き込み発生)"),
127
+ }, { readOnlyHint: false, destructiveHint: false, idempotentHint: true }, async ({ text, context_hint, store }) => {
128
128
  const result = await apiPost("/api/v1/memory/extract", {
129
129
  text,
130
130
  context_hint,
@@ -309,7 +309,7 @@ server.tool("organization_list", "日本の組織構造・商慣行の全カテ
309
309
  return { content: [{ type: "text", text }] };
310
310
  });
311
311
  // ── Tool: foreign_entry_check ───────────────────────
312
- server.tool("foreign_entry_check", "外国企業・外国人の日本進出に必要な基盤知識を検索します。法人設立、経営管理ビザ、銀行口座開設、物件探し、税務届出の5カテゴリ。", {
312
+ server.tool("foreign_entry_check", "外国企業・外国人の日本進出に必要な基盤知識を検索します。法人設立、経営管理ビザ、銀行口座開設、物件探し、税務届出、従業員雇用(労働法・解雇規制・社会保険)の6カテゴリ。", {
313
313
  query: zod_1.z.string().describe("検索クエリ(例: '法人設立の手順', 'ビザ取得', '銀行口座開設')"),
314
314
  }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true }, async ({ query }) => {
315
315
  const result = await apiPost("/api/v1/foreign-entry/check", { query });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edition-mcp-server",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "mcpName": "io.github.hiroshic9-png/japan-business-operations",
5
5
  "description": "EDITION Intelligence Platform — MCP server for Japan operations intelligence. 14 knowledge domains, 31 tools, 2 prompts, 2 resources. Verified ground truth: regulations, procedures, protocols, calendar, regional, organization, foreign entry, travel, entertainment, daily life, language, food culture, disaster safety, and persistent memory.",
6
6
  "main": "dist/index.js",