@telitask/mcp-server 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 +18 -5
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import { registerContactTools } from './tools/contacts.js';
7
7
  import { registerTaskTools } from './tools/tasks.js';
8
8
  import { registerCallTools } from './tools/calls.js';
9
9
  import { registerResources } from './resources/index.js';
10
- const DEFAULT_DASHBOARD_URL = 'https://dashboard.telitask.com';
10
+ const DEFAULT_DASHBOARD_URL = 'https://telitask.ai';
11
11
  async function runLogin() {
12
12
  const dashboardUrl = process.env.TELITASK_DASHBOARD_URL ?? DEFAULT_DASHBOARD_URL;
13
13
  console.error(`Authenticating with TeliTask at ${dashboardUrl}...`);
package/package.json CHANGED
@@ -1,21 +1,34 @@
1
1
  {
2
2
  "name": "@telitask/mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "TeliTask MCP server — manage contacts, tasks, and calls from AI assistants",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/Telitask/Telitask",
10
- "directory": "packages/mcp-server"
9
+ "url": "https://github.com/Telitask/telitask-ai"
11
10
  },
12
- "keywords": ["mcp", "telitask", "ai-assistant", "voice", "calls", "contacts", "tasks"],
11
+ "homepage": "https://github.com/Telitask/telitask-ai#mcp-server",
12
+ "bugs": {
13
+ "url": "https://github.com/Telitask/telitask-ai/issues"
14
+ },
15
+ "keywords": [
16
+ "mcp",
17
+ "telitask",
18
+ "ai-assistant",
19
+ "voice",
20
+ "calls",
21
+ "contacts",
22
+ "tasks"
23
+ ],
13
24
  "bin": {
14
25
  "telitask-mcp": "./dist/index.js"
15
26
  },
16
27
  "main": "./dist/index.js",
17
28
  "types": "./dist/index.d.ts",
18
- "files": ["dist"],
29
+ "files": [
30
+ "dist"
31
+ ],
19
32
  "publishConfig": {
20
33
  "access": "public"
21
34
  },