@askqa/mcp 1.0.2 → 1.0.4

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/README.md +4 -5
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -25,11 +25,10 @@ Get your API key from [askqa.ai](https://askqa.ai) after signing in.
25
25
 
26
26
  ## Environment Variables
27
27
 
28
- | Variable | Required | Description |
29
- | -------------------- | -------- | ------------------------------------------------------------------- |
30
- | `AUTOQA_API_KEY` | Yes | Your AskQA API key |
31
- | `AUTOQA_API_URL` | No | API URL (default: `http://localhost:8081`) |
32
- | `AUTOQA_WEBSITE_URL` | No | Website URL for run detail links (default: `http://localhost:8080`) |
28
+ | Variable | Required | Description |
29
+ | ---------------- | -------- | ------------------------------------------ |
30
+ | `AUTOQA_API_KEY` | Yes | Your AskQA API key |
31
+ | `AUTOQA_API_URL` | No | API URL (default: `http://localhost:8081`) |
33
32
 
34
33
  ## Tools
35
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askqa/mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "MCP server for AskQA — monitor websites with automated tests by chatting with AI",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -25,6 +25,7 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "@modelcontextprotocol/sdk": "^1.0.0",
28
- "zod": "^3.23.0"
28
+ "zod": "^3.23.0",
29
+ "zod-to-json-schema": "^3.25.0"
29
30
  }
30
31
  }