@unclick/mcp-server 0.3.8 → 0.3.10

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.
@@ -963,9 +963,9 @@ export const ADDITIONAL_TOOLS = [
963
963
  inputSchema: {
964
964
  type: "object",
965
965
  properties: {
966
- sender: { type: "object" },
967
- receiver: { type: "object" },
968
- parcel_contents: { type: "array" },
966
+ sender: { type: "object", additionalProperties: true },
967
+ receiver: { type: "object", additionalProperties: true },
968
+ parcel_contents: { type: "array", items: {} },
969
969
  api_key: { type: "string" },
970
970
  },
971
971
  required: ["sender", "receiver"],
@@ -1907,7 +1907,7 @@ export const ADDITIONAL_TOOLS = [
1907
1907
  inputSchema: {
1908
1908
  type: "object",
1909
1909
  properties: {
1910
- legs: { type: "array", description: "Array of flight legs with departure_airport and destination_airport" },
1910
+ legs: { type: "array", items: {}, description: "Array of flight legs with departure_airport and destination_airport" },
1911
1911
  passengers: { type: "number" },
1912
1912
  api_key: { type: "string" },
1913
1913
  },
@@ -2677,7 +2677,7 @@ export const ADDITIONAL_TOOLS = [
2677
2677
  inputSchema: {
2678
2678
  type: "object",
2679
2679
  properties: {
2680
- items: { type: "array" },
2680
+ items: { type: "array", items: {} },
2681
2681
  count: { type: "number" },
2682
2682
  },
2683
2683
  required: ["items"],
@@ -2709,7 +2709,7 @@ export const ADDITIONAL_TOOLS = [
2709
2709
  inputSchema: {
2710
2710
  type: "object",
2711
2711
  properties: {
2712
- items: { type: "array" },
2712
+ items: { type: "array", items: {} },
2713
2713
  },
2714
2714
  required: ["items"],
2715
2715
  },
@@ -2738,9 +2738,9 @@ export const ADDITIONAL_TOOLS = [
2738
2738
  query: { type: "string" },
2739
2739
  page_id: { type: "string" },
2740
2740
  database_id: { type: "string" },
2741
- filter: { type: "object" },
2742
- properties: { type: "object" },
2743
- parent: { type: "object" },
2741
+ filter: { type: "object", additionalProperties: true },
2742
+ properties: { type: "object", additionalProperties: true },
2743
+ parent: { type: "object", additionalProperties: true },
2744
2744
  },
2745
2745
  required: ["action"],
2746
2746
  },
@@ -2757,7 +2757,7 @@ export const ADDITIONAL_TOOLS = [
2757
2757
  query: { type: "string" },
2758
2758
  page: { type: "number" },
2759
2759
  book_id: { type: "number" },
2760
- highlights: { type: "array" },
2760
+ highlights: { type: "array", items: {} },
2761
2761
  },
2762
2762
  required: ["action"],
2763
2763
  },
@@ -2776,7 +2776,7 @@ export const ADDITIONAL_TOOLS = [
2776
2776
  raindrop_id: { type: "number" },
2777
2777
  link: { type: "string" },
2778
2778
  title: { type: "string" },
2779
- tags: { type: "array" },
2779
+ tags: { type: "array", items: {} },
2780
2780
  },
2781
2781
  required: ["action"],
2782
2782
  },
@@ -2812,7 +2812,7 @@ export const ADDITIONAL_TOOLS = [
2812
2812
  description: { type: "string" },
2813
2813
  cost: { type: "string" },
2814
2814
  currency_code: { type: "string" },
2815
- users: { type: "array" },
2815
+ users: { type: "array", items: {} },
2816
2816
  },
2817
2817
  required: ["action"],
2818
2818
  },
@@ -2866,7 +2866,7 @@ export const ADDITIONAL_TOOLS = [
2866
2866
  stream_id: { type: "string" },
2867
2867
  query: { type: "string" },
2868
2868
  count: { type: "number" },
2869
- entry_ids: { type: "array" },
2869
+ entry_ids: { type: "array", items: {} },
2870
2870
  },
2871
2871
  required: ["action"],
2872
2872
  },
@@ -4865,7 +4865,7 @@ export const ADDITIONAL_TOOLS = [
4865
4865
  inputSchema: {
4866
4866
  type: "object",
4867
4867
  properties: {
4868
- ips: { type: "array", description: "Array of IP address strings" },
4868
+ ips: { type: "array", items: {}, description: "Array of IP address strings" },
4869
4869
  api_key: { type: "string" },
4870
4870
  },
4871
4871
  required: ["ips"],
@@ -5225,7 +5225,7 @@ export const ADDITIONAL_TOOLS = [
5225
5225
  bot_token: { type: "string" },
5226
5226
  channel_id: { type: "string" },
5227
5227
  content: { type: "string" },
5228
- embeds: { type: "array" },
5228
+ embeds: { type: "array", items: {} },
5229
5229
  },
5230
5230
  required: ["bot_token", "channel_id", "content"],
5231
5231
  },
@@ -6184,7 +6184,7 @@ export const ADDITIONAL_TOOLS = [
6184
6184
  action: { type: "string", description: "create or get (default: get)" },
6185
6185
  order_id: { type: "string", description: "Required for action='get'" },
6186
6186
  intent: { type: "string", description: "CAPTURE or AUTHORIZE (default: CAPTURE)" },
6187
- purchase_units: { type: "array", description: "Required for action='create'" },
6187
+ purchase_units: { type: "array", items: {}, description: "Required for action='create'" },
6188
6188
  sandbox: { type: "boolean", description: "Use PayPal sandbox (default: false)" },
6189
6189
  },
6190
6190
  required: ["client_id", "client_secret"],
@@ -6200,7 +6200,7 @@ export const ADDITIONAL_TOOLS = [
6200
6200
  client_secret: { type: "string" },
6201
6201
  action: { type: "string", description: "list, create, or send (default: list)" },
6202
6202
  invoice_id: { type: "string", description: "Required for action='send'" },
6203
- invoice: { type: "object", description: "Invoice object for action='create'" },
6203
+ invoice: { type: "object", additionalProperties: true, description: "Invoice object for action='create'" },
6204
6204
  page: { type: "number" },
6205
6205
  page_size: { type: "number" },
6206
6206
  sandbox: { type: "boolean" },
@@ -6222,7 +6222,7 @@ export const ADDITIONAL_TOOLS = [
6222
6222
  cursor: { type: "string" },
6223
6223
  limit: { type: "number" },
6224
6224
  source_id: { type: "string", description: "Required for action='create'" },
6225
- amount_money: { type: "object", description: "{amount: number, currency: string}" },
6225
+ amount_money: { type: "object", additionalProperties: true, description: "{amount: number, currency: string}" },
6226
6226
  idempotency_key: { type: "string" },
6227
6227
  customer_id: { type: "string" },
6228
6228
  note: { type: "string" },
@@ -6267,7 +6267,7 @@ export const ADDITIONAL_TOOLS = [
6267
6267
  properties: {
6268
6268
  access_token: { type: "string" },
6269
6269
  text_filter: { type: "string", description: "Text to search for" },
6270
- object_types: { type: "array", description: "Types to search (default: ['ITEM'])" },
6270
+ object_types: { type: "array", items: {}, description: "Types to search (default: ['ITEM'])" },
6271
6271
  limit: { type: "number" },
6272
6272
  cursor: { type: "string" },
6273
6273
  },
@@ -6301,7 +6301,7 @@ export const ADDITIONAL_TOOLS = [
6301
6301
  realm_id: { type: "string" },
6302
6302
  action: { type: "string", description: "list, get, or create (default: list)" },
6303
6303
  invoice_id: { type: "string", description: "Required for action='get'" },
6304
- invoice: { type: "object", description: "Invoice object for action='create'" },
6304
+ invoice: { type: "object", additionalProperties: true, description: "Invoice object for action='create'" },
6305
6305
  where: { type: "string" },
6306
6306
  limit: { type: "number" },
6307
6307
  offset: { type: "number" },
@@ -6352,7 +6352,7 @@ export const ADDITIONAL_TOOLS = [
6352
6352
  client_id: { type: "string", description: "Plaid client ID" },
6353
6353
  secret: { type: "string", description: "Plaid secret key" },
6354
6354
  access_token: { type: "string", description: "Plaid item access token" },
6355
- account_ids: { type: "array", description: "Filter to specific account IDs" },
6355
+ account_ids: { type: "array", items: {}, description: "Filter to specific account IDs" },
6356
6356
  environment: { type: "string", description: "sandbox, development, or production (default: sandbox)" },
6357
6357
  },
6358
6358
  required: ["client_id", "secret", "access_token"],
@@ -6371,7 +6371,7 @@ export const ADDITIONAL_TOOLS = [
6371
6371
  end_date: { type: "string", description: "End date (YYYY-MM-DD)" },
6372
6372
  count: { type: "number", description: "Number of transactions (max 500, default 100)" },
6373
6373
  offset: { type: "number" },
6374
- account_ids: { type: "array" },
6374
+ account_ids: { type: "array", items: {} },
6375
6375
  environment: { type: "string" },
6376
6376
  },
6377
6377
  required: ["client_id", "secret", "access_token", "start_date", "end_date"],
@@ -6386,7 +6386,7 @@ export const ADDITIONAL_TOOLS = [
6386
6386
  client_id: { type: "string" },
6387
6387
  secret: { type: "string" },
6388
6388
  access_token: { type: "string" },
6389
- account_ids: { type: "array" },
6389
+ account_ids: { type: "array", items: {} },
6390
6390
  environment: { type: "string" },
6391
6391
  },
6392
6392
  required: ["client_id", "secret", "access_token"],
@@ -6416,8 +6416,8 @@ export const ADDITIONAL_TOOLS = [
6416
6416
  secret: { type: "string" },
6417
6417
  user_client_user_id: { type: "string", description: "Unique identifier for the end user" },
6418
6418
  client_name: { type: "string", description: "App name shown in Plaid Link UI" },
6419
- products: { type: "array", description: "Plaid products (default: ['transactions'])" },
6420
- country_codes: { type: "array", description: "ISO country codes (default: ['US'])" },
6419
+ products: { type: "array", items: {}, description: "Plaid products (default: ['transactions'])" },
6420
+ country_codes: { type: "array", items: {}, description: "ISO country codes (default: ['US'])" },
6421
6421
  language: { type: "string", description: "Language code (default: en)" },
6422
6422
  webhook: { type: "string" },
6423
6423
  access_token: { type: "string", description: "For update mode: existing access token" },
@@ -6460,7 +6460,7 @@ export const ADDITIONAL_TOOLS = [
6460
6460
  consumer_secret: { type: "string" },
6461
6461
  action: { type: "string", description: "list, get, or create (default: list)" },
6462
6462
  id: { type: "string", description: "Order ID for action='get'" },
6463
- order: { type: "object", description: "Order object for action='create'" },
6463
+ order: { type: "object", additionalProperties: true, description: "Order object for action='create'" },
6464
6464
  per_page: { type: "number" },
6465
6465
  page: { type: "number" },
6466
6466
  status: { type: "string", description: "pending, processing, completed, refunded, etc." },
@@ -6500,7 +6500,7 @@ export const ADDITIONAL_TOOLS = [
6500
6500
  properties: {
6501
6501
  scenario: { type: "string" },
6502
6502
  context: { type: "string" },
6503
- perspectives: { type: "array", description: "e.g. [\"CEO\",\"CFO\",\"CTO\"]" },
6503
+ perspectives: { type: "array", items: {}, description: "e.g. [\"CEO\",\"CFO\",\"CTO\"]" },
6504
6504
  depth: { type: "string", description: "quick, standard, or deep" },
6505
6505
  focus: { type: "string" },
6506
6506
  },
@@ -6741,7 +6741,7 @@ export const ADDITIONAL_TOOLS = [
6741
6741
  base_id: { type: "string", description: "Airtable base ID (starts with 'app')." },
6742
6742
  table_name: { type: "string", description: "Table name or ID." },
6743
6743
  record_id: { type: "string", description: "Record ID (starts with 'rec')." },
6744
- fields: { type: "object", description: "Record fields as key-value pairs (for create_record and update_record)." },
6744
+ fields: { type: "object", additionalProperties: true, description: "Record fields as key-value pairs (for create_record and update_record)." },
6745
6745
  formula: { type: "string", description: "Airtable filter formula string (for search_records)." },
6746
6746
  view: { type: "string", description: "View name or ID to use." },
6747
6747
  max_records: { type: "number", description: "Maximum number of records to return." },
@@ -7817,7 +7817,7 @@ export const ADDITIONAL_TOOLS = [
7817
7817
  namespace: { type: "string", description: "Namespace to query" },
7818
7818
  include_metadata: { type: "boolean", description: "Include metadata in results (default: true)" },
7819
7819
  include_values: { type: "boolean", description: "Include vector values in results" },
7820
- filter: { type: "object", description: "Metadata filter object" },
7820
+ filter: { type: "object", additionalProperties: true, description: "Metadata filter object" },
7821
7821
  },
7822
7822
  required: ["api_key", "index_host", "vector"],
7823
7823
  },
@@ -7830,7 +7830,7 @@ export const ADDITIONAL_TOOLS = [
7830
7830
  properties: {
7831
7831
  api_key: { type: "string", description: "Pinecone API key" },
7832
7832
  index_host: { type: "string", description: "Index host URL from describe_index" },
7833
- vectors: { type: "array", description: "Array of {id, values, metadata?} objects to upsert", items: { type: "object" } },
7833
+ vectors: { type: "array", description: "Array of {id, values, metadata?} objects to upsert", items: { type: "object", additionalProperties: true } },
7834
7834
  namespace: { type: "string", description: "Namespace to write to" },
7835
7835
  },
7836
7836
  required: ["api_key", "index_host", "vectors"],
@@ -7847,7 +7847,7 @@ export const ADDITIONAL_TOOLS = [
7847
7847
  ids: { type: "array", items: { type: "string" }, description: "Array of vector IDs to delete" },
7848
7848
  delete_all: { type: "boolean", description: "Delete all vectors in the namespace" },
7849
7849
  namespace: { type: "string", description: "Namespace to delete from" },
7850
- filter: { type: "object", description: "Metadata filter - delete matching vectors" },
7850
+ filter: { type: "object", additionalProperties: true, description: "Metadata filter - delete matching vectors" },
7851
7851
  },
7852
7852
  required: ["api_key", "index_host"],
7853
7853
  },
@@ -8188,7 +8188,7 @@ export const ADDITIONAL_TOOLS = [
8188
8188
  properties: {
8189
8189
  api_key: { type: "string", description: "Groq API key from console.groq.com/keys" },
8190
8190
  model: { type: "string", description: "Model ID (e.g. llama-3.3-70b-versatile, mixtral-8x7b-32768, gemma2-9b-it). Default: llama-3.3-70b-versatile" },
8191
- messages: { type: "array", items: { type: "object" }, description: "Array of {role, content} messages" },
8191
+ messages: { type: "array", items: { type: "object", additionalProperties: true }, description: "Array of {role, content} messages" },
8192
8192
  prompt: { type: "string", description: "Single user message (alternative to messages)" },
8193
8193
  system_prompt: { type: "string", description: "System prompt (used with prompt shorthand)" },
8194
8194
  max_tokens: { type: "number", description: "Maximum tokens to generate" },
@@ -8410,7 +8410,7 @@ export const ADDITIONAL_TOOLS = [
8410
8410
  project_slug: { type: "string", description: "Project slug e.g. gh/MyOrg/my-repo" },
8411
8411
  branch: { type: "string", description: "Branch to build (default: main/master)" },
8412
8412
  tag: { type: "string", description: "Tag to build" },
8413
- parameters: { type: "object", description: "Pipeline parameters as key-value pairs" },
8413
+ parameters: { type: "object", additionalProperties: true, description: "Pipeline parameters as key-value pairs" },
8414
8414
  },
8415
8415
  required: ["api_key", "project_slug"],
8416
8416
  },
@@ -8441,7 +8441,7 @@ export const ADDITIONAL_TOOLS = [
8441
8441
  write_key: { type: "string", description: "Segment source write key" },
8442
8442
  user_id: { type: "string", description: "Unique user identifier" },
8443
8443
  anonymous_id: { type: "string", description: "Anonymous ID to link to the user" },
8444
- traits: { type: "object", description: "User traits as key-value pairs (e.g. name, email, plan)" },
8444
+ traits: { type: "object", additionalProperties: true, description: "User traits as key-value pairs (e.g. name, email, plan)" },
8445
8445
  timestamp: { type: "string", description: "ISO 8601 timestamp (defaults to now)" },
8446
8446
  },
8447
8447
  required: ["write_key"],
@@ -8512,7 +8512,7 @@ export const ADDITIONAL_TOOLS = [
8512
8512
  type: "object",
8513
8513
  properties: {
8514
8514
  api_key: { type: "string", description: "Postmark server token" },
8515
- messages: { type: "array", description: "Array of email message objects (same fields as send_email)" },
8515
+ messages: { type: "array", items: {}, description: "Array of email message objects (same fields as send_email)" },
8516
8516
  },
8517
8517
  required: ["api_key", "messages"],
8518
8518
  },
@@ -8644,12 +8644,12 @@ export const ADDITIONAL_TOOLS = [
8644
8644
  properties: {
8645
8645
  api_key: { type: "string", description: "Together AI API key" },
8646
8646
  model: { type: "string", description: "Model ID (e.g. meta-llama/Llama-3-8b-chat-hf). Use togetherai_list_models to browse." },
8647
- messages: { type: "array", description: "Array of {role, content} message objects" },
8647
+ messages: { type: "array", items: {}, description: "Array of {role, content} message objects" },
8648
8648
  max_tokens: { type: "number", description: "Maximum tokens to generate" },
8649
8649
  temperature: { type: "number", description: "Sampling temperature 0-2 (default 0.7)" },
8650
8650
  top_p: { type: "number", description: "Top-p nucleus sampling" },
8651
8651
  top_k: { type: "number", description: "Top-k sampling" },
8652
- stop: { type: "array", description: "Stop sequences" },
8652
+ stop: { type: "array", items: {}, description: "Stop sequences" },
8653
8653
  },
8654
8654
  required: ["api_key", "model", "messages"],
8655
8655
  },
@@ -8667,7 +8667,7 @@ export const ADDITIONAL_TOOLS = [
8667
8667
  temperature: { type: "number", description: "Sampling temperature 0-2" },
8668
8668
  top_p: { type: "number", description: "Top-p nucleus sampling" },
8669
8669
  top_k: { type: "number", description: "Top-k sampling" },
8670
- stop: { type: "array", description: "Stop sequences" },
8670
+ stop: { type: "array", items: {}, description: "Stop sequences" },
8671
8671
  },
8672
8672
  required: ["api_key", "prompt"],
8673
8673
  },
@@ -9172,7 +9172,7 @@ export const ADDITIONAL_TOOLS = [
9172
9172
  board_id: { type: "string", description: "Board ID" },
9173
9173
  item_name: { type: "string", description: "Item name" },
9174
9174
  group_id: { type: "string", description: "Group ID to add the item to" },
9175
- column_values: { type: "object", description: "Column values as JSON object" },
9175
+ column_values: { type: "object", additionalProperties: true, description: "Column values as JSON object" },
9176
9176
  api_key: { type: "string" },
9177
9177
  },
9178
9178
  required: ["board_id", "item_name"],