@talkspresso/mcp-server 1.4.1 → 1.4.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.
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ else if (args.includes('--help')) {
14
14
  process.exit(0);
15
15
  }
16
16
  else if (args.includes('--version')) {
17
- console.log('1.4.1');
17
+ console.log('1.4.2');
18
18
  process.exit(0);
19
19
  }
20
20
  else {
@@ -42,7 +42,7 @@ else {
42
42
  const { registerSubscriptionTools } = await import('./tools/subscription.js');
43
43
  const server = new McpServer({
44
44
  name: 'talkspresso',
45
- version: '1.4.1',
45
+ version: '1.4.2',
46
46
  });
47
47
  const apiClient = new TalkspressoClient();
48
48
  registerAppointmentTools(server, apiClient);
package/dist/setup-api.js CHANGED
@@ -56,6 +56,8 @@ export class SetupApiClient {
56
56
  const response = await this.http.post('/service', {
57
57
  title: data.title,
58
58
  short_description: data.description,
59
+ long_description: '',
60
+ speaker_notes: '',
59
61
  price: data.price,
60
62
  duration: data.duration,
61
63
  logistics: {
@@ -19,6 +19,8 @@ export function registerServiceTools(server, client) {
19
19
  const data = await client.post('/service', {
20
20
  title: params.title,
21
21
  short_description: params.description,
22
+ long_description: '',
23
+ speaker_notes: '',
22
24
  price: params.price,
23
25
  duration: params.duration,
24
26
  logistics: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talkspresso/mcp-server",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Manage your Talkspresso business through Claude Code or any MCP-compatible AI assistant",
5
5
  "bin": {
6
6
  "talkspresso-mcp": "./dist/index.js"