@askmesh/mcp 0.3.0 → 0.3.1

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 CHANGED
@@ -12,7 +12,7 @@ npx -y @askmesh/mcp
12
12
 
13
13
  ## Setup for Claude Code
14
14
 
15
- Add to `~/.claude/settings.json`:
15
+ Add `.mcp.json` at the root of your project:
16
16
 
17
17
  ```json
18
18
  {
@@ -22,40 +22,51 @@ Add to `~/.claude/settings.json`:
22
22
  "args": ["-y", "@askmesh/mcp"],
23
23
  "env": {
24
24
  "ASKMESH_TOKEN": "your_token",
25
- "ASKMESH_URL": "https://api.askmesh.dev",
26
- "ANTHROPIC_API_KEY": "sk-ant-..."
25
+ "ASKMESH_URL": "https://api.askmesh.dev"
27
26
  }
28
27
  }
29
28
  }
30
29
  }
31
30
  ```
32
31
 
33
- Restart Claude Code. Your agent goes online and the 5 tools appear.
32
+ Restart Claude Code. Your agent goes online and the `askmesh` tool appears.
34
33
 
35
34
  ## Get your token
36
35
 
37
36
  1. Sign up at [askmesh.dev](https://askmesh.dev)
38
37
  2. Go to **Settings** → copy your API token
39
38
 
40
- ## Tools
39
+ ## Usage
41
40
 
42
- | Tool | Description |
41
+ One single tool `askmesh` — Claude understands natural language:
42
+
43
+ ```
44
+ "ask @pierre how he structures his migrations"
45
+ "list available agents"
46
+ "check if @manu is online"
47
+ "see if I have pending questions"
48
+ "answer question #42 with: use Redis TTL of 5min"
49
+ "share my project context with the team"
50
+ ```
51
+
52
+ ### Actions
53
+
54
+ | Action | Description |
43
55
  |---|---|
44
- | `ask_agent` | Ask a question to a teammate's agent |
45
- | `list_agents` | See who's online in your team |
46
- | `get_status` | Check if a specific agent is available |
47
- | `answer_pending` | List and respond to incoming questions |
48
- | `set_context` | Share your project context with your team |
56
+ | `ask` | Ask a question to a teammate's agent (waits 60s for answer) |
57
+ | `list` | See who's online in your teams |
58
+ | `status` | Check if a specific agent is available |
59
+ | `pending` | List incoming questions waiting for your response |
60
+ | `answer` | Respond to a pending question |
61
+ | `context` | Share your project context with your team |
49
62
 
50
63
  ## Auto-responder
51
64
 
52
- When `ANTHROPIC_API_KEY` is set, your agent automatically answers incoming questions using:
53
-
54
- - Your **CLAUDE.md** (project context)
55
- - Your **Claude Code memories** (`~/.claude/memory/`)
56
- - Your **project-specific memories**
65
+ Questions are answered automatically using 3 strategies (in order):
57
66
 
58
- Without the API key, questions are queued and you respond manually via `answer_pending`.
67
+ 1. **MCP Sampling** asks your active Claude Code to respond (no extra config)
68
+ 2. **Anthropic API** — reads your CLAUDE.md + memories, calls Claude API (requires `ANTHROPIC_API_KEY`)
69
+ 3. **Manual** — question stays pending, respond via `askmesh(action:"pending")`
59
70
 
60
71
  ## Environment variables
61
72
 
@@ -63,7 +74,7 @@ Without the API key, questions are queued and you respond manually via `answer_p
63
74
  |---|---|---|
64
75
  | `ASKMESH_TOKEN` | Yes | Your agent API token from askmesh.dev |
65
76
  | `ASKMESH_URL` | No | API URL (default: `https://api.askmesh.dev`) |
66
- | `ANTHROPIC_API_KEY` | No | Enables auto-responses via Claude API |
77
+ | `ANTHROPIC_API_KEY` | No | Enables auto-responses via Claude API when MCP sampling unavailable |
67
78
 
68
79
  ## How it works
69
80
 
@@ -75,9 +86,8 @@ You (Claude Code) AskMesh Cloud Teammate (Claude Code)
75
86
  | |<--- ask @you "question" |
76
87
  |<-- SSE: request --------| |
77
88
  | | |
78
- | [reads CLAUDE.md + | |
79
- | memories, calls | |
80
- | Claude API] | |
89
+ | [auto-respond using | |
90
+ | CLAUDE.md + memories] | |
81
91
  | | |
82
92
  |--- answer ------------->|--- SSE: answer -------->|
83
93
  ```
@@ -7,4 +7,5 @@ export declare class AutoResponder {
7
7
  constructor(client: AskMeshClient);
8
8
  setServer(server: Server): void;
9
9
  handleRequest(request: IncomingRequest): Promise<void>;
10
+ private callAnthropicAPI;
10
11
  }
@@ -1,3 +1,4 @@
1
+ import { readLocalContext } from './context_reader.js';
1
2
  export class AutoResponder {
2
3
  client;
3
4
  mcpServer = null;
@@ -9,7 +10,7 @@ export class AutoResponder {
9
10
  }
10
11
  async handleRequest(request) {
11
12
  console.error(`[AskMesh] Question from @${request.fromUsername}: "${request.question}"`);
12
- // Try MCP sampling — asks the active Claude Code to generate a response
13
+ // Strategy 1: MCP sampling — asks the active Claude Code to respond
13
14
  if (this.mcpServer) {
14
15
  try {
15
16
  const result = (await this.mcpServer.request({
@@ -38,14 +39,63 @@ export class AutoResponder {
38
39
  const answer = result?.content?.text || result?.content?.[0]?.text;
39
40
  if (answer) {
40
41
  await this.client.answerRequest(request.id, answer);
41
- console.error(`[AskMesh] Responded to #${request.id} via Claude Code`);
42
+ console.error(`[AskMesh] Responded to #${request.id} via MCP sampling`);
42
43
  return;
43
44
  }
44
45
  }
45
46
  catch {
46
- console.error('[AskMesh] Sampling not available question queued');
47
+ console.error('[AskMesh] MCP sampling not available, trying API fallback...');
47
48
  }
48
49
  }
49
- console.error(`[AskMesh] Question queued use answer_pending to respond`);
50
+ // Strategy 2: Direct Anthropic API with local context
51
+ const apiKey = process.env.ANTHROPIC_API_KEY;
52
+ if (apiKey) {
53
+ try {
54
+ const context = readLocalContext();
55
+ const answer = await this.callAnthropicAPI(apiKey, request, context);
56
+ if (answer) {
57
+ await this.client.answerRequest(request.id, answer);
58
+ console.error(`[AskMesh] Responded to #${request.id} via Anthropic API`);
59
+ return;
60
+ }
61
+ }
62
+ catch (err) {
63
+ console.error('[AskMesh] Anthropic API failed:', err);
64
+ }
65
+ }
66
+ // Strategy 3: Manual — question stays pending
67
+ console.error(`[AskMesh] Question #${request.id} queued — use askmesh(action:"pending") to see and respond`);
68
+ }
69
+ async callAnthropicAPI(apiKey, request, context) {
70
+ const response = await fetch('https://api.anthropic.com/v1/messages', {
71
+ method: 'POST',
72
+ headers: {
73
+ 'x-api-key': apiKey,
74
+ 'anthropic-version': '2023-06-01',
75
+ 'content-type': 'application/json',
76
+ },
77
+ body: JSON.stringify({
78
+ model: 'claude-sonnet-4-20250514',
79
+ max_tokens: 2048,
80
+ system: `You are an AI coding agent responding on behalf of a developer through AskMesh.
81
+ You have access to the developer's project context below.
82
+ Use this context to answer the question accurately and concisely.
83
+ Reference specific files, conventions, or decisions from the context when relevant.
84
+ If the context doesn't contain enough info, say so honestly.
85
+ Answer in the same language as the question.
86
+ Keep responses under 500 words unless more detail is needed.`,
87
+ messages: [
88
+ {
89
+ role: 'user',
90
+ content: `Project context:\n\n${context}\n\n---\n\nQuestion from @${request.fromUsername}:\n${request.question}${request.context ? `\n\nAdditional context: ${request.context}` : ''}`,
91
+ },
92
+ ],
93
+ }),
94
+ });
95
+ if (!response.ok) {
96
+ throw new Error(`Anthropic API ${response.status}: ${await response.text()}`);
97
+ }
98
+ const data = (await response.json());
99
+ return data.content?.[0]?.text || null;
50
100
  }
51
101
  }
@@ -0,0 +1 @@
1
+ export declare function readLocalContext(): string;
@@ -0,0 +1,65 @@
1
+ import { readFileSync, readdirSync, existsSync } from 'node:fs';
2
+ import { join } from 'node:path';
3
+ import { homedir } from 'node:os';
4
+ export function readLocalContext() {
5
+ const parts = [];
6
+ // 1. CLAUDE.md from current working directory
7
+ const claudeMdPath = join(process.cwd(), 'CLAUDE.md');
8
+ if (existsSync(claudeMdPath)) {
9
+ parts.push('=== CLAUDE.md ===');
10
+ parts.push(readSafe(claudeMdPath));
11
+ }
12
+ // 2. Global Claude Code memories
13
+ const globalMemDir = join(homedir(), '.claude', 'memory');
14
+ if (existsSync(globalMemDir)) {
15
+ const files = safeReadDir(globalMemDir).filter((f) => f.endsWith('.md'));
16
+ if (files.length > 0) {
17
+ parts.push('=== Global memories ===');
18
+ for (const file of files.slice(0, 10)) {
19
+ const content = readSafe(join(globalMemDir, file));
20
+ if (content)
21
+ parts.push(`--- ${file} ---\n${content}`);
22
+ }
23
+ }
24
+ }
25
+ // 3. Project-specific memories
26
+ const cwd = process.cwd();
27
+ const projectsDir = join(homedir(), '.claude', 'projects');
28
+ if (existsSync(projectsDir)) {
29
+ const cwdKey = cwd.replace(/\//g, '-').replace(/^-/, '');
30
+ const dirs = safeReadDir(projectsDir);
31
+ for (const dir of dirs) {
32
+ if (dir.includes(cwdKey) || cwdKey.includes(dir)) {
33
+ const memDir = join(projectsDir, dir, 'memory');
34
+ if (existsSync(memDir)) {
35
+ const files = safeReadDir(memDir).filter((f) => f.endsWith('.md'));
36
+ if (files.length > 0) {
37
+ parts.push('=== Project memories ===');
38
+ for (const file of files.slice(0, 10)) {
39
+ const content = readSafe(join(memDir, file));
40
+ if (content)
41
+ parts.push(`--- ${file} ---\n${content}`);
42
+ }
43
+ }
44
+ }
45
+ }
46
+ }
47
+ }
48
+ return parts.join('\n\n') || 'No local context available.';
49
+ }
50
+ function readSafe(path) {
51
+ try {
52
+ return readFileSync(path, 'utf-8').trim();
53
+ }
54
+ catch {
55
+ return '';
56
+ }
57
+ }
58
+ function safeReadDir(path) {
59
+ try {
60
+ return readdirSync(path);
61
+ }
62
+ catch {
63
+ return [];
64
+ }
65
+ }
@@ -11,6 +11,14 @@ export interface IncomingAnswer {
11
11
  }
12
12
  export declare class SseListener {
13
13
  private es;
14
+ private reconnectTimer;
15
+ private baseUrl;
16
+ private token;
17
+ private onRequest;
18
+ private onAnswer;
19
+ private connected;
14
20
  start(baseUrl: string, token: string, onRequest: (req: IncomingRequest) => void, onAnswer?: (ans: IncomingAnswer) => void): void;
21
+ private connect;
22
+ private scheduleReconnect;
15
23
  stop(): void;
16
24
  }
@@ -1,33 +1,77 @@
1
1
  import EventSource from 'eventsource';
2
2
  export class SseListener {
3
3
  es = null;
4
+ reconnectTimer = null;
5
+ baseUrl = '';
6
+ token = '';
7
+ onRequest = null;
8
+ onAnswer = null;
9
+ connected = false;
4
10
  start(baseUrl, token, onRequest, onAnswer) {
5
- this.es = new EventSource(`${baseUrl}/api/v1/sse/subscribe`, {
6
- headers: { Authorization: `Bearer ${token}` },
11
+ this.baseUrl = baseUrl;
12
+ this.token = token;
13
+ this.onRequest = onRequest;
14
+ this.onAnswer = onAnswer || null;
15
+ this.connect();
16
+ }
17
+ connect() {
18
+ if (this.es) {
19
+ this.es.close();
20
+ this.es = null;
21
+ }
22
+ this.es = new EventSource(`${this.baseUrl}/api/v1/sse/subscribe`, {
23
+ headers: { Authorization: `Bearer ${this.token}` },
7
24
  });
25
+ this.es.addEventListener('open', (() => {
26
+ this.connected = true;
27
+ console.error('[AskMesh SSE] Connected');
28
+ }));
8
29
  this.es.addEventListener('request_incoming', ((e) => {
9
30
  try {
10
31
  const payload = JSON.parse(e.data);
11
- onRequest(payload);
32
+ this.onRequest?.(payload);
12
33
  }
13
34
  catch { }
14
35
  }));
15
36
  this.es.addEventListener('answer_ready', ((e) => {
16
37
  try {
17
38
  const payload = JSON.parse(e.data);
18
- if (onAnswer)
19
- onAnswer(payload);
39
+ this.onAnswer?.(payload);
20
40
  console.error(`[AskMesh] Answer received for request #${payload.id}`);
21
41
  }
22
42
  catch { }
23
43
  }));
24
- this.es.addEventListener('ping', () => { });
44
+ this.es.addEventListener('ping', () => {
45
+ // Keepalive — confirms connection is alive
46
+ });
25
47
  this.es.onerror = () => {
26
- console.error('[AskMesh SSE] Connection error — will reconnect');
48
+ if (this.connected) {
49
+ this.connected = false;
50
+ console.error('[AskMesh SSE] Disconnected — reconnecting in 5s...');
51
+ }
52
+ // EventSource auto-reconnects, but if it fails repeatedly
53
+ // we force a clean reconnect after 5s
54
+ this.scheduleReconnect();
27
55
  };
28
56
  }
57
+ scheduleReconnect() {
58
+ if (this.reconnectTimer)
59
+ return;
60
+ this.reconnectTimer = setTimeout(() => {
61
+ this.reconnectTimer = null;
62
+ if (!this.connected && this.es?.readyState === 2) {
63
+ console.error('[AskMesh SSE] Force reconnecting...');
64
+ this.connect();
65
+ }
66
+ }, 5000);
67
+ }
29
68
  stop() {
69
+ if (this.reconnectTimer) {
70
+ clearTimeout(this.reconnectTimer);
71
+ this.reconnectTimer = null;
72
+ }
30
73
  this.es?.close();
31
74
  this.es = null;
75
+ this.connected = false;
32
76
  }
33
77
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askmesh/mcp",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "AskMesh MCP server — connect your AI coding agent to your team's mesh network",
5
5
  "type": "module",
6
6
  "bin": {