@aigne/example-afs-mcp-server 1.1.6-beta.9 → 1.2.0-beta.31
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 +3 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ export GITHUB_PERSONAL_ACCESS_TOKEN=your_github_token_here
|
|
|
41
41
|
export OPENAI_API_KEY=your_openai_api_key_here
|
|
42
42
|
|
|
43
43
|
# Run in interactive chat mode
|
|
44
|
-
npx -y @aigne/example-afs-mcp-server --
|
|
44
|
+
npx -y @aigne/example-afs-mcp-server --interactive
|
|
45
45
|
|
|
46
46
|
# Ask a specific question
|
|
47
47
|
npx -y @aigne/example-afs-mcp-server --input "Search for a repo named aigne"
|
|
@@ -116,7 +116,7 @@ For detailed configuration examples, please refer to the `.env.local.example` fi
|
|
|
116
116
|
|
|
117
117
|
```bash
|
|
118
118
|
# Run in interactive chat mode
|
|
119
|
-
pnpm start --
|
|
119
|
+
pnpm start --interactive
|
|
120
120
|
|
|
121
121
|
# Run with a single message
|
|
122
122
|
pnpm start --input "What are the recent issues in the AIGNE repository?"
|
|
@@ -177,7 +177,7 @@ npx -y @aigne/example-afs-mcp-server --input "Tell me about the AIGNE-io/aigne-f
|
|
|
177
177
|
npx -y @aigne/example-afs-mcp-server --input "What are the recent open issues in AIGNE-io/aigne-framework?"
|
|
178
178
|
|
|
179
179
|
# Interactive mode - ask follow-up questions naturally
|
|
180
|
-
npx -y @aigne/example-afs-mcp-server --
|
|
180
|
+
npx -y @aigne/example-afs-mcp-server --interactive
|
|
181
181
|
```
|
|
182
182
|
|
|
183
183
|
**In chat mode, try:**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-afs-mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0-beta.31",
|
|
4
4
|
"description": "A demonstration of using AIGNE Framework with AFS mount a MCP server",
|
|
5
5
|
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
6
|
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/afs-mcp-server",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"yargs": "^18.0.0",
|
|
20
|
-
"@aigne/afs": "^1.4.0-beta.
|
|
21
|
-
"@aigne/afs-history": "^1.2.0-beta.
|
|
22
|
-
"@aigne/afs-local-fs": "^1.4.0-beta.
|
|
23
|
-
"@aigne/cli": "^1.59.0-beta.
|
|
24
|
-
"@aigne/core": "^1.72.0-beta.
|
|
20
|
+
"@aigne/afs": "^1.4.0-beta.11",
|
|
21
|
+
"@aigne/afs-history": "^1.2.0-beta.12",
|
|
22
|
+
"@aigne/afs-local-fs": "^1.4.0-beta.26",
|
|
23
|
+
"@aigne/cli": "^1.59.0-beta.31",
|
|
24
|
+
"@aigne/core": "^1.72.0-beta.25"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/bun": "^1.2.22",
|
|
28
|
-
"@aigne/test-utils": "^0.5.69-beta.
|
|
28
|
+
"@aigne/test-utils": "^0.5.69-beta.25"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"start": "bun run index.ts",
|