noverload-mcp 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import { tools } from "./tools/index.js";
8
8
  import { resources } from "./resources/index.js";
9
9
  const ConfigSchema = z.object({
10
10
  accessToken: z.string().min(1, "Access token is required"),
11
- apiUrl: z.string().url().optional().default("https://noverload.app"),
11
+ apiUrl: z.string().url().optional().default("https://noverload.com"),
12
12
  readOnly: z.boolean().optional().default(true),
13
13
  });
14
14
  async function main() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noverload-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Noverload - Access saved content in AI tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",