@aigne/example-mcp-sqlite 1.16.0 → 1.16.2

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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.ts +1 -0
  3. package/package.json +6 -6
package/README.md CHANGED
@@ -61,7 +61,7 @@ AI ->> User: There are 10 products in the database.
61
61
 
62
62
  * [Node.js](https://nodejs.org) (>=20.0) and npm installed on your machine
63
63
  * An [OpenAI API key](https://platform.openai.com/api-keys) for interacting with OpenAI's services
64
- * [uv](https://github.com/astral-sh/uv) python environment for running [MCP Server SQlite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite)
64
+ * [uv](https://github.com/astral-sh/uv) python environment for running [MCP Server SQlite](https://github.com/modelcontextprotocol/servers-archived/tree/main/src/sqlite)
65
65
  * Optional dependencies (if running the example from source code):
66
66
  * [Bun](https://bun.sh) for running unit tests & examples
67
67
  * [Pnpm](https://pnpm.io) for package management
package/index.ts CHANGED
@@ -21,6 +21,7 @@ await runWithAIGNE(
21
21
  if (!prompt) throw new Error("Prompt mcp-demo not found");
22
22
 
23
23
  const agent = AIAgent.from({
24
+ name: "example_sqlite",
24
25
  instructions: PromptBuilder.from(prompt),
25
26
  skills: [sqlite],
26
27
  memory: new DefaultMemory(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-mcp-sqlite",
3
- "version": "1.16.0",
3
+ "version": "1.16.2",
4
4
  "description": "A demonstration of using AIGNE Framework and Sqlite MCP Server to interact with a SQLite database",
5
5
  "author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
6
6
  "homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/mcp-sqlite",
@@ -16,14 +16,14 @@
16
16
  "README.md"
17
17
  ],
18
18
  "dependencies": {
19
- "@aigne/cli": "^1.18.1",
20
- "@aigne/core": "^1.28.1",
21
- "@aigne/agent-library": "^1.17.6",
22
- "@aigne/openai": "^0.6.1"
19
+ "@aigne/agent-library": "^1.17.8",
20
+ "@aigne/cli": "^1.20.0",
21
+ "@aigne/core": "^1.29.0",
22
+ "@aigne/openai": "^0.6.3"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/bun": "^1.2.9",
26
- "@aigne/test-utils": "^0.4.13"
26
+ "@aigne/test-utils": "^0.4.15"
27
27
  },
28
28
  "scripts": {
29
29
  "start": "bun run index.ts",