Skip to content
Open App

MCP-Tools - Overview

Access Permissions

MCP tools are divided into two groups:

  • Read Tools — require only read scope; work with any token or OAuth connection that has read permissions
  • Write Tools — require write scope; require an admin token or an OAuth connection with write permissions

Read Tools

search_updates

Searches updates for search terms, sources, tags, and time periods.

ParameterTypeDescription
queryStringFull-text search term (optional)
source_idStringUpdates from a specific source (optional)
tagsArrayUpdate tags to filter by (optional)
folderStringinbox, saved, or dropped (optional)
limitIntegerNumber of results (default: 20, max: 100)

get_update_details

Returns the complete content of a single update.

ParameterTypeDescription
update_idStringID of the update

list_sources

Lists all sources in the workspace.

ParameterTypeDescription
active_onlyBooleanReturn only active sources (default: true)

list_reports

Lists available AI reports.

ParameterTypeDescription
typeStringsummary, feedback, list, linkedin_post, conversation_starters (optional)
limitIntegerNumber (default: 10)

get_report

Returns the complete content of a report.

ParameterTypeDescription
report_idStringReport ID

get_team_context

Returns the AI context of the workspace (website URL and context documents).

No parameters.


list_tags

Lists all tags in the workspace.

ParameterTypeDescription
typeStringsources, channels, updates (optional)

Write-Tools

create_source

Creates a new source.

ParameterTypeDescription
urlStringSource website URL
nameStringInternal name
tagsArrayTag IDs (optional)

update_source

Changes the name, URL, or tags of an existing source.

ParameterTypeDescription
source_idStringSource ID
nameStringNew name (optional)
urlStringNew URL (optional)

delete_source

Deletes a source, including all channels and updates.

ParameterTypeDescription
source_idStringSource ID

create_channel

Creates a channel manually.

ParameterTypeDescription
source_idStringParent source ID
urlStringChannel URL
nameStringChannel name (optional)

update_channel

Changes the name or description of a channel.

ParameterTypeDescription
channel_idStringChannel ID
nameStringNew name (optional)

delete_channel

Deletes a channel.

ParameterTypeDescription
channel_idStringChannel ID

toggle_channel

Enables or disables a channel.

ParameterTypeDescription
channel_idStringChannel ID
activeBooleantrue = active, false = inactive

create_tag

Creates a new tag.

ParameterTypeDescription
nameStringTag name
typeStringsources, channels, or updates
descriptionStringAI tagging description (optional)

update_tag

Changes the name or description of a tag.

ParameterTypeDescription
tag_idStringTag ID
nameStringNew name (optional)
descriptionStringNew AI description (optional)