Tenali AI Docs
MCP & AI Assistants

Tool Reference

Every tool the Tenali MCP server exposes to Claude, ChatGPT and other AI assistants — parameters, required permissions, response shape, limits and error codes.

The Tenali MCP server exposes fourteen tools. All of them are read-only — nothing here can create, edit or delete anything in Tenali.

You don't call these directly. Your assistant picks the right tool from your question; this page exists so you know exactly what it can reach, and so you can ask for something specific when you want to.

Meetings and Summaries

ToolParametersPermission
search_meeting_summariesquery, date_range_start, date_range_end, company, meeting_type, org_wideMeeting summaries
get_meeting_summarymeeting_id, org_wideMeeting summaries
list_meetingsdate_range_start, date_range_end, participant, meeting_type, title_contains, limit, cursor, org_wideMeeting summaries
list_action_itemsdate_range_start, date_range_end, limit, cursor, org_wideMeeting summaries
review_pipelinecompany, org_wideMeeting summaries
get_meeting_recordingmeeting_id, org_wideRaw transcripts & recordings

search_meeting_summaries searches across summaries, briefs, key points, action items and detected questions. It never returns raw transcript text — that's a separate tool with its own permission.

get_meeting_summary returns one meeting complete: every summary section including any custom ones, participants, organizer, platform, duration and status.

list_meetings is your meeting inventory, newest first, with an exact total. Filter by UTC date range, participant name or email, or title substring. To filter by platform, pass meeting_type — it accepts zoom, meet, teams, webex, gong, fireflies or slack.

review_pipeline returns account rollups derived from your meetings — last touch, cadence and momentum. It reports how many meetings it analyzed so you can tell whether the answer covered everything.

get_meeting_recording returns a time-limited playback link. It's callable with Meeting summaries alone, but it only returns a usable link when the raw transcripts and recording permission is granted.

Question Intelligence

ToolParametersPermission
question_intelligencesearch, include_all, page, page_size, org_wideQuestion Intelligence
list_question_occurrencessearch, include_all, page, page_size, org_wideQuestion Intelligence

question_intelligence is your Question Intelligence dashboard as data: customer questions grouped across meetings, each with the answer Tenali captured, its status, whether that answer was AI-generated or admin-curated, how often it came up, and when it was first and last asked. Pass include_all to also see the lower-signal rows the dashboard hides.

list_question_occurrences returns the individual detections behind those groups — the question as asked, who asked it, which meeting, and when.

This pair is what makes questions like "what objections came up most last quarter, and how did we answer them?" possible.

Transcripts

ToolParametersPermission
get_meeting_transcriptmeeting_id, cursor, page_size, start_seconds, order, org_wideRaw transcripts & recordings
search_transcriptsquery, date_range_start, date_range_end, participant, limit, cursor, org_wideRaw transcripts & recordings

get_meeting_transcript returns timestamped utterances with speaker, start and end seconds, text and detected language. Use start_seconds to jump to a point in the call, and order to read from the end of a long meeting without paging through it.

search_transcripts does case-insensitive keyword search over raw transcript text, across the 100 most recent meetings in scope.

Knowledge Base

ToolParametersPermission
search_knowledge_basequeryKnowledge base
list_sourceslimit, cursorKnowledge base
get_source_metadatasource_idKnowledge base

search_knowledge_base searches your team's training sources — FAQs, documents, crawled sites and Slack-ingested content. It returns organization-visible content plus your own private sources, exactly matching what you'd see in the app.

list_sources catalogs the sources visible to you; get_source_metadata returns full detail for one, including the list of URLs it ingested.

Team Activity

ToolParametersPermission
team_activitydate_range_start, date_range_endOrganization-wide (admin)

Per-member recorded-meeting activity across the organization. This tool is always organization-wide — it has no personal-scope mode and requires an admin connection with organization-wide access approved.

Response Shape

Every tool returns the same envelope, so an assistant always knows what scope was applied and whether anything was left out:

{
  "schema_version": "1",
  "scope_applied": "member",
  "as_of": "2026-07-22T09:00:00Z",
  "items": [],
  "has_more": true,
  "next_cursor": "3",
  "truncated": false
}
  • scope_applied is member or organization, so you can always tell whether an answer covered just you or the whole team.
  • has_more and next_cursor page through large result sets.
  • truncated is set when a response hit the size ceiling. Whole items are dropped rather than half an item, and the cursor is adjusted so nothing is silently skipped.

Some tools add fields on top — a total count, transcript duration_minutes, or how many meetings an account review analyzed.

Limits

LimitValue
Requests120 tool calls per minute, per connection
Response size400 KB per response
Request timeout45 seconds
list_meetingsUp to 200 per page
list_action_itemsUp to 500 rows
get_meeting_transcriptUp to 500 utterances per page
search_transcriptsUp to 200 hits, across the 100 most recent meetings in scope
Question IntelligenceUp to 200 per page
review_pipelineAnalyzes up to 500 meetings, and reports whether that covered everything

Error Codes

If something is wrong, the tool returns a structured error rather than an empty result:

CodeWhat it means
unauthorizedThe token is missing, invalid or expired. Reconnect from your assistant.
grant_revokedThe connection was revoked in Tenali. Reconnect to restore access.
insufficient_scopeThe tool needs a permission you didn't approve. Reconnect and tick it. (Exception: a missing recording permission returns a redacted result, not this error — see get_meeting_recording above.)
membership_revokedYour Tenali account no longer has access to that workspace.
disabledThe MCP server isn't enabled for your workspace.
subscription_requiredYour plan has lapsed. An admin can renew it from the billing page.
rate_limitedMore than 120 calls in a minute. Try again shortly.
admin_scope_lostOrganization-wide access is no longer available for your account. Retry without it.
invalid_argumentA parameter was malformed — usually a bad date or cursor.
not_foundThe meeting or source doesn't exist, or isn't visible to you.
timeoutThe request took too long. Narrow the filters and retry.
internal_errorSomething went wrong on our side.

Next Guides

Was this page helpful?