@commandable/mcp 0.0.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.
- package/LICENSE +10 -0
- package/README.md +34 -0
- package/dist/cli/bin.d.ts +3 -0
- package/dist/cli/bin.d.ts.map +1 -0
- package/dist/cli/bin.js +7 -0
- package/dist/cli/bin.js.map +1 -0
- package/dist/cli/credentialManager.d.ts +19 -0
- package/dist/cli/credentialManager.d.ts.map +1 -0
- package/dist/cli/credentialManager.js +81 -0
- package/dist/cli/credentialManager.js.map +1 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +77 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/setup.d.ts +3 -0
- package/dist/cli/setup.d.ts.map +1 -0
- package/dist/cli/setup.js +194 -0
- package/dist/cli/setup.js.map +1 -0
- package/dist/crypto/encryption.d.ts +3 -0
- package/dist/crypto/encryption.d.ts.map +1 -0
- package/dist/crypto/encryption.js +29 -0
- package/dist/crypto/encryption.js.map +1 -0
- package/dist/db/client.d.ts +22 -0
- package/dist/db/client.d.ts.map +1 -0
- package/dist/db/client.js +43 -0
- package/dist/db/client.js.map +1 -0
- package/dist/db/credentialStore.d.ts +13 -0
- package/dist/db/credentialStore.d.ts.map +1 -0
- package/dist/db/credentialStore.js +57 -0
- package/dist/db/credentialStore.js.map +1 -0
- package/dist/db/integrationStore.d.ts +5 -0
- package/dist/db/integrationStore.d.ts.map +1 -0
- package/dist/db/integrationStore.js +65 -0
- package/dist/db/integrationStore.js.map +1 -0
- package/dist/db/migrate.d.ts +3 -0
- package/dist/db/migrate.d.ts.map +1 -0
- package/dist/db/migrate.js +88 -0
- package/dist/db/migrate.js.map +1 -0
- package/dist/db/schema.d.ts +911 -0
- package/dist/db/schema.d.ts.map +1 -0
- package/dist/db/schema.js +73 -0
- package/dist/db/schema.js.map +1 -0
- package/dist/errors/httpError.d.ts +6 -0
- package/dist/errors/httpError.d.ts.map +1 -0
- package/dist/errors/httpError.js +11 -0
- package/dist/errors/httpError.js.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +21 -0
- package/dist/index.js.map +1 -0
- package/dist/integrations/actionsFactory.d.ts +12 -0
- package/dist/integrations/actionsFactory.d.ts.map +1 -0
- package/dist/integrations/actionsFactory.js +68 -0
- package/dist/integrations/actionsFactory.js.map +1 -0
- package/dist/integrations/catalog.d.ts +9 -0
- package/dist/integrations/catalog.d.ts.map +1 -0
- package/dist/integrations/catalog.js +80 -0
- package/dist/integrations/catalog.js.map +1 -0
- package/dist/integrations/dataLoader.d.ts +47 -0
- package/dist/integrations/dataLoader.d.ts.map +1 -0
- package/dist/integrations/dataLoader.js +126 -0
- package/dist/integrations/dataLoader.js.map +1 -0
- package/dist/integrations/getIntegration.d.ts +11 -0
- package/dist/integrations/getIntegration.d.ts.map +1 -0
- package/dist/integrations/getIntegration.js +22 -0
- package/dist/integrations/getIntegration.js.map +1 -0
- package/dist/integrations/googleServiceAccount.d.ts +6 -0
- package/dist/integrations/googleServiceAccount.d.ts.map +1 -0
- package/dist/integrations/googleServiceAccount.js +54 -0
- package/dist/integrations/googleServiceAccount.js.map +1 -0
- package/dist/integrations/providerRegistry.d.ts +2 -0
- package/dist/integrations/providerRegistry.d.ts.map +1 -0
- package/dist/integrations/providerRegistry.js +50 -0
- package/dist/integrations/providerRegistry.js.map +1 -0
- package/dist/integrations/proxy.d.ts +16 -0
- package/dist/integrations/proxy.d.ts.map +1 -0
- package/dist/integrations/proxy.js +331 -0
- package/dist/integrations/proxy.js.map +1 -0
- package/dist/integrations/sandbox.d.ts +7 -0
- package/dist/integrations/sandbox.d.ts.map +1 -0
- package/dist/integrations/sandbox.js +210 -0
- package/dist/integrations/sandbox.js.map +1 -0
- package/dist/integrations/tools.d.ts +3 -0
- package/dist/integrations/tools.d.ts.map +1 -0
- package/dist/integrations/tools.js +70 -0
- package/dist/integrations/tools.js.map +1 -0
- package/dist/mcp/server.d.ts +15 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +50 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/mcp/toolAdapter.d.ts +17 -0
- package/dist/mcp/toolAdapter.d.ts.map +1 -0
- package/dist/mcp/toolAdapter.js +18 -0
- package/dist/mcp/toolAdapter.js.map +1 -0
- package/dist/types.d.ts +34 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/integration-data/README.md +52 -0
- package/integration-data/airtable/credentials.json +20 -0
- package/integration-data/airtable/credentials_hint.md +4 -0
- package/integration-data/airtable/handlers/create_record.js +12 -0
- package/integration-data/airtable/handlers/delete_record.js +7 -0
- package/integration-data/airtable/handlers/get_record.js +4 -0
- package/integration-data/airtable/handlers/get_table_schema.js +6 -0
- package/integration-data/airtable/handlers/list_bases.js +4 -0
- package/integration-data/airtable/handlers/list_records.js +25 -0
- package/integration-data/airtable/handlers/list_table_fields.js +6 -0
- package/integration-data/airtable/handlers/list_tables.js +4 -0
- package/integration-data/airtable/handlers/list_views.js +6 -0
- package/integration-data/airtable/handlers/search_records.js +6 -0
- package/integration-data/airtable/handlers/update_record.js +11 -0
- package/integration-data/airtable/manifest.json +83 -0
- package/integration-data/airtable/schemas/create_record.json +12 -0
- package/integration-data/airtable/schemas/delete_record.json +11 -0
- package/integration-data/airtable/schemas/empty.json +6 -0
- package/integration-data/airtable/schemas/get_record.json +11 -0
- package/integration-data/airtable/schemas/id_base.json +9 -0
- package/integration-data/airtable/schemas/id_base_table.json +10 -0
- package/integration-data/airtable/schemas/list_records.json +26 -0
- package/integration-data/airtable/schemas/search_records.json +12 -0
- package/integration-data/airtable/schemas/update_record.json +13 -0
- package/integration-data/github/credentials.json +20 -0
- package/integration-data/github/credentials_hint.md +7 -0
- package/integration-data/github/handlers/add_labels_to_issue.js +12 -0
- package/integration-data/github/handlers/close_issue.js +5 -0
- package/integration-data/github/handlers/comment_on_issue.js +5 -0
- package/integration-data/github/handlers/create_branch.js +33 -0
- package/integration-data/github/handlers/create_commit.js +91 -0
- package/integration-data/github/handlers/create_issue.js +10 -0
- package/integration-data/github/handlers/create_or_update_file.js +21 -0
- package/integration-data/github/handlers/create_pull_request.js +16 -0
- package/integration-data/github/handlers/create_repo.js +11 -0
- package/integration-data/github/handlers/delete_repo.js +6 -0
- package/integration-data/github/handlers/get_issue.js +4 -0
- package/integration-data/github/handlers/get_repo.js +4 -0
- package/integration-data/github/handlers/list_branches.js +4 -0
- package/integration-data/github/handlers/list_commits.js +12 -0
- package/integration-data/github/handlers/list_issues.js +12 -0
- package/integration-data/github/handlers/list_pull_requests.js +8 -0
- package/integration-data/github/handlers/list_repos_install.js +4 -0
- package/integration-data/github/handlers/list_repos_user.js +4 -0
- package/integration-data/github/handlers/merge_pull_request.js +14 -0
- package/integration-data/github/handlers/update_issue.js +15 -0
- package/integration-data/github/manifest.json +26 -0
- package/integration-data/github/schemas/add_labels_to_issue.json +12 -0
- package/integration-data/github/schemas/close_issue.json +10 -0
- package/integration-data/github/schemas/comment_on_issue.json +11 -0
- package/integration-data/github/schemas/create_branch.json +12 -0
- package/integration-data/github/schemas/create_commit.json +25 -0
- package/integration-data/github/schemas/create_issue.json +13 -0
- package/integration-data/github/schemas/create_or_update_file.json +15 -0
- package/integration-data/github/schemas/create_pull_request.json +15 -0
- package/integration-data/github/schemas/create_repo.json +12 -0
- package/integration-data/github/schemas/delete_repo.json +10 -0
- package/integration-data/github/schemas/empty.json +5 -0
- package/integration-data/github/schemas/get_issue.json +10 -0
- package/integration-data/github/schemas/get_repo.json +9 -0
- package/integration-data/github/schemas/list_commits.json +12 -0
- package/integration-data/github/schemas/list_issues.json +12 -0
- package/integration-data/github/schemas/list_pull_requests.json +10 -0
- package/integration-data/github/schemas/merge_pull_request.json +14 -0
- package/integration-data/github/schemas/owner_repo.json +9 -0
- package/integration-data/github/schemas/update_issue.json +15 -0
- package/integration-data/google-calendar/credentials.json +36 -0
- package/integration-data/google-calendar/credentials_hint.md +9 -0
- package/integration-data/google-calendar/handlers/create_event.js +6 -0
- package/integration-data/google-calendar/handlers/delete_acl.js +6 -0
- package/integration-data/google-calendar/handlers/delete_event.js +7 -0
- package/integration-data/google-calendar/handlers/freebusy_query.js +4 -0
- package/integration-data/google-calendar/handlers/get_acl.js +5 -0
- package/integration-data/google-calendar/handlers/get_calendar.js +4 -0
- package/integration-data/google-calendar/handlers/get_event.js +5 -0
- package/integration-data/google-calendar/handlers/insert_acl.js +6 -0
- package/integration-data/google-calendar/handlers/list_acl.js +5 -0
- package/integration-data/google-calendar/handlers/list_calendars.js +4 -0
- package/integration-data/google-calendar/handlers/list_colors.js +4 -0
- package/integration-data/google-calendar/handlers/list_events.js +21 -0
- package/integration-data/google-calendar/handlers/list_settings.js +4 -0
- package/integration-data/google-calendar/handlers/move_event.js +6 -0
- package/integration-data/google-calendar/handlers/patch_event.js +5 -0
- package/integration-data/google-calendar/handlers/quick_add.js +6 -0
- package/integration-data/google-calendar/handlers/update_acl.js +7 -0
- package/integration-data/google-calendar/handlers/update_event.js +5 -0
- package/integration-data/google-calendar/manifest.json +26 -0
- package/integration-data/google-calendar/schemas/create_event.json +34 -0
- package/integration-data/google-calendar/schemas/delete_acl.json +9 -0
- package/integration-data/google-calendar/schemas/empty.json +1 -0
- package/integration-data/google-calendar/schemas/freebusy_query.json +13 -0
- package/integration-data/google-calendar/schemas/get_acl.json +9 -0
- package/integration-data/google-calendar/schemas/id_calendar.json +8 -0
- package/integration-data/google-calendar/schemas/id_calendar_event.json +9 -0
- package/integration-data/google-calendar/schemas/insert_acl.json +18 -0
- package/integration-data/google-calendar/schemas/list_events.json +15 -0
- package/integration-data/google-calendar/schemas/move_event.json +10 -0
- package/integration-data/google-calendar/schemas/patch_event.json +10 -0
- package/integration-data/google-calendar/schemas/quick_add.json +9 -0
- package/integration-data/google-calendar/schemas/update_acl.json +10 -0
- package/integration-data/google-calendar/schemas/update_event.json +10 -0
- package/integration-data/google-docs/credentials.json +36 -0
- package/integration-data/google-docs/credentials_hint.md +9 -0
- package/integration-data/google-docs/handlers/append_text.js +12 -0
- package/integration-data/google-docs/handlers/batch_update.js +13 -0
- package/integration-data/google-docs/handlers/create_document.js +9 -0
- package/integration-data/google-docs/handlers/delete_first_match.js +50 -0
- package/integration-data/google-docs/handlers/get_document.js +12 -0
- package/integration-data/google-docs/handlers/get_document_structured.js +6 -0
- package/integration-data/google-docs/handlers/get_document_text.js +17 -0
- package/integration-data/google-docs/handlers/insert_inline_image_after_first_match.js +41 -0
- package/integration-data/google-docs/handlers/insert_page_break_after_first_match.js +49 -0
- package/integration-data/google-docs/handlers/insert_table_after_first_match.js +49 -0
- package/integration-data/google-docs/handlers/insert_text_after_first_match.js +51 -0
- package/integration-data/google-docs/handlers/replace_all_text.js +8 -0
- package/integration-data/google-docs/handlers/style_first_match.js +42 -0
- package/integration-data/google-docs/handlers/update_document_style.js +8 -0
- package/integration-data/google-docs/handlers/update_paragraph_style_for_first_match.js +48 -0
- package/integration-data/google-docs/manifest.json +58 -0
- package/integration-data/google-docs/schemas/append_text.json +10 -0
- package/integration-data/google-docs/schemas/apply_text_style.json +13 -0
- package/integration-data/google-docs/schemas/batch_update.json +16 -0
- package/integration-data/google-docs/schemas/create_document.json +8 -0
- package/integration-data/google-docs/schemas/delete_content_range.json +11 -0
- package/integration-data/google-docs/schemas/delete_first_match.json +10 -0
- package/integration-data/google-docs/schemas/get_document.json +11 -0
- package/integration-data/google-docs/schemas/get_document_structured.json +9 -0
- package/integration-data/google-docs/schemas/get_document_text.json +9 -0
- package/integration-data/google-docs/schemas/insert_inline_image.json +12 -0
- package/integration-data/google-docs/schemas/insert_inline_image_after_first_match.json +13 -0
- package/integration-data/google-docs/schemas/insert_page_break.json +10 -0
- package/integration-data/google-docs/schemas/insert_page_break_after_first_match.json +11 -0
- package/integration-data/google-docs/schemas/insert_table.json +12 -0
- package/integration-data/google-docs/schemas/insert_table_after_first_match.json +13 -0
- package/integration-data/google-docs/schemas/insert_text_after_first_match.json +12 -0
- package/integration-data/google-docs/schemas/insert_text_at.json +11 -0
- package/integration-data/google-docs/schemas/replace_all_text.json +12 -0
- package/integration-data/google-docs/schemas/style_first_match.json +12 -0
- package/integration-data/google-docs/schemas/update_document_style.json +11 -0
- package/integration-data/google-docs/schemas/update_paragraph_style.json +13 -0
- package/integration-data/google-docs/schemas/update_paragraph_style_for_first_match.json +12 -0
- package/integration-data/google-sheet/credentials.json +36 -0
- package/integration-data/google-sheet/credentials_hint.md +9 -0
- package/integration-data/google-sheet/handlers/append_values.js +18 -0
- package/integration-data/google-sheet/handlers/batch_clear_values.js +6 -0
- package/integration-data/google-sheet/handlers/batch_clear_values_by_data_filter.js +6 -0
- package/integration-data/google-sheet/handlers/batch_get_values.js +16 -0
- package/integration-data/google-sheet/handlers/batch_update.js +14 -0
- package/integration-data/google-sheet/handlers/batch_update_values.js +16 -0
- package/integration-data/google-sheet/handlers/batch_update_values_by_data_filter.js +16 -0
- package/integration-data/google-sheet/handlers/clear_values.js +6 -0
- package/integration-data/google-sheet/handlers/copy_to_spreadsheet.js +6 -0
- package/integration-data/google-sheet/handlers/create_spreadsheet.js +5 -0
- package/integration-data/google-sheet/handlers/get_developer_metadata.js +6 -0
- package/integration-data/google-sheet/handlers/get_spreadsheet.js +12 -0
- package/integration-data/google-sheet/handlers/get_spreadsheet_by_data_filter.js +10 -0
- package/integration-data/google-sheet/handlers/get_values.js +14 -0
- package/integration-data/google-sheet/handlers/get_values_by_data_filter.js +14 -0
- package/integration-data/google-sheet/handlers/search_developer_metadata.js +7 -0
- package/integration-data/google-sheet/handlers/update_values.js +16 -0
- package/integration-data/google-sheet/manifest.json +125 -0
- package/integration-data/google-sheet/schemas/append_values.json +16 -0
- package/integration-data/google-sheet/schemas/batch_clear_values.json +10 -0
- package/integration-data/google-sheet/schemas/batch_clear_values_by_data_filter.json +10 -0
- package/integration-data/google-sheet/schemas/batch_get_values.json +13 -0
- package/integration-data/google-sheet/schemas/batch_update.json +13 -0
- package/integration-data/google-sheet/schemas/batch_update_values.json +25 -0
- package/integration-data/google-sheet/schemas/batch_update_values_by_data_filter.json +25 -0
- package/integration-data/google-sheet/schemas/clear_values.json +10 -0
- package/integration-data/google-sheet/schemas/copy_to_spreadsheet.json +11 -0
- package/integration-data/google-sheet/schemas/create_spreadsheet.json +11 -0
- package/integration-data/google-sheet/schemas/get_developer_metadata.json +10 -0
- package/integration-data/google-sheet/schemas/get_spreadsheet.json +15 -0
- package/integration-data/google-sheet/schemas/get_spreadsheet_by_data_filter.json +11 -0
- package/integration-data/google-sheet/schemas/get_values.json +13 -0
- package/integration-data/google-sheet/schemas/get_values_by_data_filter.json +17 -0
- package/integration-data/google-sheet/schemas/search_developer_metadata.json +14 -0
- package/integration-data/google-sheet/schemas/update_values.json +15 -0
- package/integration-data/google-slides/credentials.json +36 -0
- package/integration-data/google-slides/credentials_hint.md +9 -0
- package/integration-data/google-slides/handlers/append_text_to_title_of_first_slide.js +17 -0
- package/integration-data/google-slides/handlers/batch_update.js +15 -0
- package/integration-data/google-slides/handlers/create_presentation.js +8 -0
- package/integration-data/google-slides/handlers/create_slide_after_first_match.js +20 -0
- package/integration-data/google-slides/handlers/get_page_thumbnail.js +12 -0
- package/integration-data/google-slides/handlers/get_presentation.js +6 -0
- package/integration-data/google-slides/handlers/insert_image_after_first_match.js +19 -0
- package/integration-data/google-slides/handlers/insert_shape_after_first_match.js +21 -0
- package/integration-data/google-slides/handlers/replace_text_first_match.js +9 -0
- package/integration-data/google-slides/handlers/set_background_color_for_slide_index.js +15 -0
- package/integration-data/google-slides/handlers/style_text_first_match.js +48 -0
- package/integration-data/google-slides/manifest.json +41 -0
- package/integration-data/google-slides/schemas/append_text_to_title_of_first_slide.json +11 -0
- package/integration-data/google-slides/schemas/batch_update.json +13 -0
- package/integration-data/google-slides/schemas/create_presentation.json +8 -0
- package/integration-data/google-slides/schemas/create_slide_after_first_match.json +11 -0
- package/integration-data/google-slides/schemas/get_page_thumbnail.json +12 -0
- package/integration-data/google-slides/schemas/get_presentation.json +9 -0
- package/integration-data/google-slides/schemas/insert_image_after_first_match.json +13 -0
- package/integration-data/google-slides/schemas/insert_shape_after_first_match.json +13 -0
- package/integration-data/google-slides/schemas/replace_text_first_match.json +12 -0
- package/integration-data/google-slides/schemas/set_background_color_for_slide_index.json +11 -0
- package/integration-data/google-slides/schemas/style_text_first_match.json +12 -0
- package/integration-data/new_integration_prompt.md +41 -0
- package/integration-data/notion/credentials.json +21 -0
- package/integration-data/notion/credentials_hint.md +5 -0
- package/integration-data/notion/handlers/append_block_children.js +7 -0
- package/integration-data/notion/handlers/create_comment.js +10 -0
- package/integration-data/notion/handlers/create_database.js +11 -0
- package/integration-data/notion/handlers/create_page.js +13 -0
- package/integration-data/notion/handlers/delete_block.js +8 -0
- package/integration-data/notion/handlers/get_me.js +4 -0
- package/integration-data/notion/handlers/list_block_children.js +10 -0
- package/integration-data/notion/handlers/list_comments.js +14 -0
- package/integration-data/notion/handlers/list_users.js +10 -0
- package/integration-data/notion/handlers/query_database.js +10 -0
- package/integration-data/notion/handlers/retrieve_block.js +4 -0
- package/integration-data/notion/handlers/retrieve_database.js +4 -0
- package/integration-data/notion/handlers/retrieve_page.js +4 -0
- package/integration-data/notion/handlers/retrieve_page_property_item.js +10 -0
- package/integration-data/notion/handlers/retrieve_user.js +4 -0
- package/integration-data/notion/handlers/search.js +11 -0
- package/integration-data/notion/handlers/update_block.js +7 -0
- package/integration-data/notion/handlers/update_database.js +10 -0
- package/integration-data/notion/handlers/update_page_properties.js +10 -0
- package/integration-data/notion/manifest.json +139 -0
- package/integration-data/notion/prompt.md +26 -0
- package/integration-data/notion/schemas/append_block_children.json +10 -0
- package/integration-data/notion/schemas/create_comment.json +18 -0
- package/integration-data/notion/schemas/create_database.json +18 -0
- package/integration-data/notion/schemas/create_page.json +22 -0
- package/integration-data/notion/schemas/delete_block.json +9 -0
- package/integration-data/notion/schemas/empty.json +6 -0
- package/integration-data/notion/schemas/id_block.json +9 -0
- package/integration-data/notion/schemas/id_database.json +9 -0
- package/integration-data/notion/schemas/id_page.json +9 -0
- package/integration-data/notion/schemas/id_user.json +9 -0
- package/integration-data/notion/schemas/list_block_children.json +11 -0
- package/integration-data/notion/schemas/list_comments.json +15 -0
- package/integration-data/notion/schemas/list_users.json +9 -0
- package/integration-data/notion/schemas/query_database.json +13 -0
- package/integration-data/notion/schemas/retrieve_page_property_item.json +12 -0
- package/integration-data/notion/schemas/search.json +27 -0
- package/integration-data/notion/schemas/update_block.json +10 -0
- package/integration-data/notion/schemas/update_database.json +13 -0
- package/integration-data/notion/schemas/update_page_properties.json +13 -0
- package/integration-data/trello/credentials.json +26 -0
- package/integration-data/trello/credentials_hint.md +4 -0
- package/integration-data/trello/handlers/add_checklist_to_card.js +5 -0
- package/integration-data/trello/handlers/add_member_to_card.js +5 -0
- package/integration-data/trello/handlers/archive_list.js +5 -0
- package/integration-data/trello/handlers/create_card.js +13 -0
- package/integration-data/trello/handlers/create_list.js +7 -0
- package/integration-data/trello/handlers/delete_card.js +9 -0
- package/integration-data/trello/handlers/get_board.js +4 -0
- package/integration-data/trello/handlers/get_board_cards.js +4 -0
- package/integration-data/trello/handlers/get_board_custom_fields.js +4 -0
- package/integration-data/trello/handlers/get_board_labels.js +4 -0
- package/integration-data/trello/handlers/get_board_lists.js +4 -0
- package/integration-data/trello/handlers/get_board_members.js +4 -0
- package/integration-data/trello/handlers/get_board_memberships.js +4 -0
- package/integration-data/trello/handlers/get_card.js +4 -0
- package/integration-data/trello/handlers/get_card_actions.js +4 -0
- package/integration-data/trello/handlers/get_card_attachments.js +4 -0
- package/integration-data/trello/handlers/get_card_checklists.js +4 -0
- package/integration-data/trello/handlers/get_card_custom_field_items.js +4 -0
- package/integration-data/trello/handlers/get_card_members.js +4 -0
- package/integration-data/trello/handlers/get_list.js +4 -0
- package/integration-data/trello/handlers/get_list_cards.js +4 -0
- package/integration-data/trello/handlers/get_member.js +4 -0
- package/integration-data/trello/handlers/get_member_boards.js +4 -0
- package/integration-data/trello/handlers/get_member_organizations.js +4 -0
- package/integration-data/trello/handlers/get_organization.js +4 -0
- package/integration-data/trello/handlers/get_organization_boards.js +4 -0
- package/integration-data/trello/handlers/move_card_to_list.js +5 -0
- package/integration-data/trello/handlers/remove_member_from_card.js +9 -0
- package/integration-data/trello/handlers/search.js +5 -0
- package/integration-data/trello/handlers/update_card.js +19 -0
- package/integration-data/trello/handlers/update_list.js +11 -0
- package/integration-data/trello/manifest.json +231 -0
- package/integration-data/trello/schemas/add_checklist_to_card.json +10 -0
- package/integration-data/trello/schemas/add_member_to_card.json +10 -0
- package/integration-data/trello/schemas/archive_list.json +9 -0
- package/integration-data/trello/schemas/create_card.json +13 -0
- package/integration-data/trello/schemas/create_list.json +11 -0
- package/integration-data/trello/schemas/delete_card.json +9 -0
- package/integration-data/trello/schemas/display_trello_cards.json +45 -0
- package/integration-data/trello/schemas/empty.json +5 -0
- package/integration-data/trello/schemas/get_member.json +5 -0
- package/integration-data/trello/schemas/id_board.json +8 -0
- package/integration-data/trello/schemas/id_card.json +8 -0
- package/integration-data/trello/schemas/id_list.json +8 -0
- package/integration-data/trello/schemas/id_org.json +8 -0
- package/integration-data/trello/schemas/move_card_to_list.json +10 -0
- package/integration-data/trello/schemas/remove_member_from_card.json +10 -0
- package/integration-data/trello/schemas/search.json +8 -0
- package/integration-data/trello/schemas/update_card.json +16 -0
- package/integration-data/trello/schemas/update_list.json +12 -0
- package/package.json +61 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"presentationId": { "type": "string" },
|
|
6
|
+
"findText": { "type": "string" },
|
|
7
|
+
"uri": { "type": "string" },
|
|
8
|
+
"width": { "type": "number", "default": 2000000 },
|
|
9
|
+
"height": { "type": "number", "default": 2000000 }
|
|
10
|
+
},
|
|
11
|
+
"required": ["presentationId", "findText", "uri"],
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"presentationId": { "type": "string" },
|
|
6
|
+
"findText": { "type": "string" },
|
|
7
|
+
"shapeType": { "type": "string", "default": "RECTANGLE" },
|
|
8
|
+
"width": { "type": "number", "default": 2000000 },
|
|
9
|
+
"height": { "type": "number", "default": 1000000 }
|
|
10
|
+
},
|
|
11
|
+
"required": ["presentationId", "findText"],
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"presentationId": { "type": "string" },
|
|
6
|
+
"findText": { "type": "string" },
|
|
7
|
+
"replaceText": { "type": "string" },
|
|
8
|
+
"matchCase": { "type": "boolean" }
|
|
9
|
+
},
|
|
10
|
+
"required": ["presentationId", "findText", "replaceText"],
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"presentationId": { "type": "string" },
|
|
6
|
+
"slideIndex": { "type": "number", "minimum": 0 },
|
|
7
|
+
"rgbColor": { "type": "object", "properties": { "red": { "type": "number" }, "green": { "type": "number" }, "blue": { "type": "number" } }, "required": ["red", "green", "blue"] }
|
|
8
|
+
},
|
|
9
|
+
"required": ["presentationId", "slideIndex", "rgbColor"],
|
|
10
|
+
"additionalProperties": false
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"presentationId": { "type": "string" },
|
|
6
|
+
"findText": { "type": "string" },
|
|
7
|
+
"textStyle": { "type": "object" },
|
|
8
|
+
"fields": { "type": "string" }
|
|
9
|
+
},
|
|
10
|
+
"required": ["presentationId", "findText", "textStyle"],
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
## Task
|
|
2
|
+
|
|
3
|
+
Write a new integration-data folder for `<INTEGRATION_NAME>`.
|
|
4
|
+
|
|
5
|
+
## Required structure
|
|
6
|
+
|
|
7
|
+
Create `commandable-mcp/packages/server/integration-data/<name>/` containing:
|
|
8
|
+
|
|
9
|
+
- `manifest.json`: flat `tools[]`; each tool has `name`, `description`, `inputSchema` (relative path), `handler` (relative path), `scope` (`read` | `write` | optionally `admin`)
|
|
10
|
+
- `schemas/*.json`: JSON Schema for each tool input. Prefer `additionalProperties: false` for strict contracts; use `true` only for pass-through bodies (common in Google APIs). Reuse `empty.json` for no-arg tools.
|
|
11
|
+
- `handlers/*.js`: async arrow functions `async (input) => { ... }` using `integration.fetch(path, init?)` for all HTTP calls. Pass `body` as a plain object (proxy will JSON-stringify). Return parsed JSON.
|
|
12
|
+
- `credentials.json`: `{ schema, injection }` where `schema` is JSON Schema for secrets and `injection` is `headers` and/or `query` templates using `{{placeholder}}`
|
|
13
|
+
- `credentials_hint.md`: **numbered steps** (1., 2., 3., …) telling a user exactly how to obtain/provide credentials
|
|
14
|
+
- `prompt.md` (optional): extra LLM guidance only if the API has non-obvious usage patterns
|
|
15
|
+
|
|
16
|
+
Also register the provider in `src/integrations/providerRegistry.ts` with its base URL and auth factory.
|
|
17
|
+
|
|
18
|
+
## Tool design goals
|
|
19
|
+
|
|
20
|
+
- **Default**: small, composable tools that mirror API resources.
|
|
21
|
+
- **Read tools**: side-effect free (GET only).
|
|
22
|
+
- **Write tools**: POST/PUT/PATCH/DELETE where appropriate.
|
|
23
|
+
- **Coverage**: start with core CRUD + list/search + get-by-id; add convenience tools after.
|
|
24
|
+
|
|
25
|
+
## When to go beyond REST proxying
|
|
26
|
+
|
|
27
|
+
Most handlers should be thin proxies (fetch → return JSON). Only add multi-step/orchestrating handlers when the raw API is genuinely hard for an LLM to use correctly, e.g.:
|
|
28
|
+
|
|
29
|
+
- multi-step workflows (GitHub tree → blob → commit → ref)
|
|
30
|
+
- required transforms (e.g. base64 encoding) that the caller shouldn’t manage
|
|
31
|
+
- awkward addressing that benefits from higher-level helpers (“find text then act” patterns like Docs/Slides)
|
|
32
|
+
|
|
33
|
+
If an endpoint is already clean and self-contained, just proxy it.
|
|
34
|
+
|
|
35
|
+
## Reference examples (follow exactly)
|
|
36
|
+
|
|
37
|
+
- `github/`: simple proxies + complex orchestration (`create_commit.js`)
|
|
38
|
+
- `notion/`: clean proxying + optional `prompt.md`
|
|
39
|
+
- `google-calendar/`: query param building + `read`/`write`/`admin` scopes
|
|
40
|
+
- `trello/`: query-param credential injection + `displayCards`
|
|
41
|
+
- `google-docs/`, `google-slides/`: higher-level write helpers over batchUpdate APIs
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": {
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"token": {
|
|
6
|
+
"type": "string",
|
|
7
|
+
"title": "Internal Integration Token",
|
|
8
|
+
"description": "Notion internal integration token (starts with \"secret_\")."
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"required": ["token"],
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
},
|
|
14
|
+
"injection": {
|
|
15
|
+
"headers": {
|
|
16
|
+
"Authorization": "Bearer {{token}}",
|
|
17
|
+
"Notion-Version": "2022-06-28"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
1. Go to `https://www.notion.so/profile/integrations/internal`
|
|
2
|
+
2. Create a Notion integration in Notion’s developer settings
|
|
3
|
+
3. Share your target pages/databases with that integration so it has access
|
|
4
|
+
4. Copy the **Internal Integration Token** (usually starts with `secret_`)
|
|
5
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const res = await integration.fetch(`/pages`, {
|
|
3
|
+
method: 'POST',
|
|
4
|
+
body: {
|
|
5
|
+
parent: input.parent,
|
|
6
|
+
properties: input.properties,
|
|
7
|
+
children: input.children || undefined,
|
|
8
|
+
icon: input.icon || undefined,
|
|
9
|
+
cover: input.cover || undefined,
|
|
10
|
+
},
|
|
11
|
+
})
|
|
12
|
+
return await res.json()
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const params = new URLSearchParams()
|
|
3
|
+
if (input.start_cursor)
|
|
4
|
+
params.set('start_cursor', input.start_cursor)
|
|
5
|
+
if (input.page_size)
|
|
6
|
+
params.set('page_size', String(input.page_size))
|
|
7
|
+
const qs = params.toString()
|
|
8
|
+
const res = await integration.fetch(`/blocks/${encodeURIComponent(input.block_id)}/children${qs ? `?${qs}` : ''}`)
|
|
9
|
+
return await res.json()
|
|
10
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const params = new URLSearchParams()
|
|
3
|
+
if (input.block_id)
|
|
4
|
+
params.set('block_id', input.block_id)
|
|
5
|
+
if (input.discussion_id)
|
|
6
|
+
params.set('discussion_id', input.discussion_id)
|
|
7
|
+
if (input.start_cursor)
|
|
8
|
+
params.set('start_cursor', input.start_cursor)
|
|
9
|
+
if (input.page_size)
|
|
10
|
+
params.set('page_size', String(input.page_size))
|
|
11
|
+
const qs = params.toString()
|
|
12
|
+
const res = await integration.fetch(`/comments${qs ? `?${qs}` : ''}`)
|
|
13
|
+
return await res.json()
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const params = new URLSearchParams()
|
|
3
|
+
if (input.start_cursor)
|
|
4
|
+
params.set('start_cursor', input.start_cursor)
|
|
5
|
+
if (input.page_size)
|
|
6
|
+
params.set('page_size', String(input.page_size))
|
|
7
|
+
const qs = params.toString()
|
|
8
|
+
const res = await integration.fetch(`/users${qs ? `?${qs}` : ''}`)
|
|
9
|
+
return await res.json()
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const body = {
|
|
3
|
+
filter: input.filter || undefined,
|
|
4
|
+
sorts: input.sorts || undefined,
|
|
5
|
+
start_cursor: input.start_cursor || undefined,
|
|
6
|
+
page_size: input.page_size || undefined,
|
|
7
|
+
}
|
|
8
|
+
const res = await integration.fetch(`/databases/${encodeURIComponent(input.database_id)}/query`, { method: 'POST', body })
|
|
9
|
+
return await res.json()
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const params = new URLSearchParams()
|
|
3
|
+
if (input.start_cursor)
|
|
4
|
+
params.set('start_cursor', input.start_cursor)
|
|
5
|
+
if (input.page_size)
|
|
6
|
+
params.set('page_size', String(input.page_size))
|
|
7
|
+
const qs = params.toString()
|
|
8
|
+
const res = await integration.fetch(`/pages/${encodeURIComponent(input.page_id)}/properties/${encodeURIComponent(input.property_id)}${qs ? `?${qs}` : ''}`)
|
|
9
|
+
return await res.json()
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const body = {
|
|
3
|
+
query: input.query || '',
|
|
4
|
+
filter: input.filter || undefined,
|
|
5
|
+
sort: input.sort || undefined,
|
|
6
|
+
start_cursor: input.start_cursor || undefined,
|
|
7
|
+
page_size: input.page_size || undefined,
|
|
8
|
+
}
|
|
9
|
+
const res = await integration.fetch(`/search`, { method: 'POST', body })
|
|
10
|
+
return await res.json()
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const body = {
|
|
3
|
+
title: input.title || undefined,
|
|
4
|
+
description: input.description || undefined,
|
|
5
|
+
properties: input.properties || undefined,
|
|
6
|
+
archived: input.archived === undefined ? undefined : input.archived,
|
|
7
|
+
}
|
|
8
|
+
const res = await integration.fetch(`/databases/${encodeURIComponent(input.database_id)}`, { method: 'PATCH', body })
|
|
9
|
+
return await res.json()
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
async (input) => {
|
|
2
|
+
const body = {
|
|
3
|
+
properties: input.properties,
|
|
4
|
+
archived: input.archived === undefined ? undefined : input.archived,
|
|
5
|
+
icon: input.icon || undefined,
|
|
6
|
+
cover: input.cover || undefined,
|
|
7
|
+
}
|
|
8
|
+
const res = await integration.fetch(`/pages/${encodeURIComponent(input.page_id)}`, { method: 'PATCH', body })
|
|
9
|
+
return await res.json()
|
|
10
|
+
}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "notion",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"tools": [
|
|
5
|
+
{
|
|
6
|
+
"name": "search",
|
|
7
|
+
"description": "Search across all accessible Notion content (pages, databases).",
|
|
8
|
+
"inputSchema": "schemas/search.json",
|
|
9
|
+
"handler": "handlers/search.js",
|
|
10
|
+
"scope": "read"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "retrieve_page",
|
|
14
|
+
"description": "Retrieve a page by ID.",
|
|
15
|
+
"inputSchema": "schemas/id_page.json",
|
|
16
|
+
"handler": "handlers/retrieve_page.js",
|
|
17
|
+
"scope": "read"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "retrieve_database",
|
|
21
|
+
"description": "Retrieve a database by ID.",
|
|
22
|
+
"inputSchema": "schemas/id_database.json",
|
|
23
|
+
"handler": "handlers/retrieve_database.js",
|
|
24
|
+
"scope": "read"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "query_database",
|
|
28
|
+
"description": "Query a database with optional filter, sorts, and pagination.",
|
|
29
|
+
"inputSchema": "schemas/query_database.json",
|
|
30
|
+
"handler": "handlers/query_database.js",
|
|
31
|
+
"scope": "read"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "list_block_children",
|
|
35
|
+
"description": "List child blocks for a block (including page blocks).",
|
|
36
|
+
"inputSchema": "schemas/list_block_children.json",
|
|
37
|
+
"handler": "handlers/list_block_children.js",
|
|
38
|
+
"scope": "read"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "retrieve_block",
|
|
42
|
+
"description": "Retrieve a block by ID.",
|
|
43
|
+
"inputSchema": "schemas/id_block.json",
|
|
44
|
+
"handler": "handlers/retrieve_block.js",
|
|
45
|
+
"scope": "read"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "list_users",
|
|
49
|
+
"description": "List users in the workspace.",
|
|
50
|
+
"inputSchema": "schemas/list_users.json",
|
|
51
|
+
"handler": "handlers/list_users.js",
|
|
52
|
+
"scope": "read"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "retrieve_user",
|
|
56
|
+
"description": "Retrieve a user by ID.",
|
|
57
|
+
"inputSchema": "schemas/id_user.json",
|
|
58
|
+
"handler": "handlers/retrieve_user.js",
|
|
59
|
+
"scope": "read"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "list_comments",
|
|
63
|
+
"description": "List comments for a given discussion or page block.",
|
|
64
|
+
"inputSchema": "schemas/list_comments.json",
|
|
65
|
+
"handler": "handlers/list_comments.js",
|
|
66
|
+
"scope": "read"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "get_me",
|
|
70
|
+
"description": "Retrieve the authenticated user (bot) profile.",
|
|
71
|
+
"inputSchema": "schemas/empty.json",
|
|
72
|
+
"handler": "handlers/get_me.js",
|
|
73
|
+
"scope": "read"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "retrieve_page_property_item",
|
|
77
|
+
"description": "Retrieve a specific page property item (handles rollups and pagination).",
|
|
78
|
+
"inputSchema": "schemas/retrieve_page_property_item.json",
|
|
79
|
+
"handler": "handlers/retrieve_page_property_item.js",
|
|
80
|
+
"scope": "read"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "create_page",
|
|
84
|
+
"description": "Create a new page in a database or as a child of a page.",
|
|
85
|
+
"inputSchema": "schemas/create_page.json",
|
|
86
|
+
"handler": "handlers/create_page.js",
|
|
87
|
+
"scope": "write"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "update_page_properties",
|
|
91
|
+
"description": "Update page properties, archive/unarchive, icon and cover.",
|
|
92
|
+
"inputSchema": "schemas/update_page_properties.json",
|
|
93
|
+
"handler": "handlers/update_page_properties.js",
|
|
94
|
+
"scope": "write"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "append_block_children",
|
|
98
|
+
"description": "Append child blocks to a block (including page blocks).",
|
|
99
|
+
"inputSchema": "schemas/append_block_children.json",
|
|
100
|
+
"handler": "handlers/append_block_children.js",
|
|
101
|
+
"scope": "write"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "update_block",
|
|
105
|
+
"description": "Update a block (content, archived state, etc).",
|
|
106
|
+
"inputSchema": "schemas/update_block.json",
|
|
107
|
+
"handler": "handlers/update_block.js",
|
|
108
|
+
"scope": "write"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "delete_block",
|
|
112
|
+
"description": "Archive a block (soft delete).",
|
|
113
|
+
"inputSchema": "schemas/delete_block.json",
|
|
114
|
+
"handler": "handlers/delete_block.js",
|
|
115
|
+
"scope": "write"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "create_comment",
|
|
119
|
+
"description": "Create a comment on a discussion or block.",
|
|
120
|
+
"inputSchema": "schemas/create_comment.json",
|
|
121
|
+
"handler": "handlers/create_comment.js",
|
|
122
|
+
"scope": "write"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "create_database",
|
|
126
|
+
"description": "Create a new database under a page.",
|
|
127
|
+
"inputSchema": "schemas/create_database.json",
|
|
128
|
+
"handler": "handlers/create_database.js",
|
|
129
|
+
"scope": "write"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "update_database",
|
|
133
|
+
"description": "Update database title, description, properties, or archived state.",
|
|
134
|
+
"inputSchema": "schemas/update_database.json",
|
|
135
|
+
"handler": "handlers/update_database.js",
|
|
136
|
+
"scope": "write"
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
## Appending paragraph blocks
|
|
2
|
+
|
|
3
|
+
When appending a paragraph block to a Notion page, ensure the `rich_text` field is correctly defined within the `paragraph` type. Example format:
|
|
4
|
+
|
|
5
|
+
```json
|
|
6
|
+
{
|
|
7
|
+
"block_id": "<page_id>",
|
|
8
|
+
"children": [
|
|
9
|
+
{
|
|
10
|
+
"object": "block",
|
|
11
|
+
"type": "paragraph",
|
|
12
|
+
"paragraph": {
|
|
13
|
+
"rich_text": [
|
|
14
|
+
{
|
|
15
|
+
"type": "text",
|
|
16
|
+
"text": {
|
|
17
|
+
"content": "Your text here"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
```
|
|
26
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["block_id", "children"],
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"block_id": { "type": "string" },
|
|
8
|
+
"children": { "type": "array", "items": { "type": "object" } }
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["parent", "rich_text"],
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"parent": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"description": "Parent discussion_id or block_id.",
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"discussion_id": { "type": "string" },
|
|
13
|
+
"block_id": { "type": "string" }
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"rich_text": { "type": "array", "items": { "type": "object" } }
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["parent", "title", "properties"],
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"parent": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"description": "Parent page where the database will be created.",
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"page_id": { "type": "string" }
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"title": { "type": "array", "items": { "type": "object" } },
|
|
16
|
+
"properties": { "type": "object" }
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["parent", "properties"],
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"parent": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"description": "Parent object specifying database_id or page_id.",
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"database_id": { "type": "string" },
|
|
13
|
+
"page_id": { "type": "string" },
|
|
14
|
+
"type": { "type": "string" }
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"properties": { "type": "object", "description": "Page properties map per Notion API." },
|
|
18
|
+
"children": { "type": "array", "items": { "type": "object" } },
|
|
19
|
+
"icon": { "type": ["object", "null"] },
|
|
20
|
+
"cover": { "type": ["object", "null"] }
|
|
21
|
+
}
|
|
22
|
+
}
|