← Registry

Productivity

agendaforge.app

Manages conference events, sessions, and organizations, providing details and stats.

2 endpoints53 known toolsFirst detected August 26, 2026Last detected August 26, 2026

ENDPOINT 1

https://mcp.agendaforge.app/mcp

No auth detected

MCP server metadata

Name
agendaforge-mcp
Version
1
Capabilities
tools
Server instructions

Official AgendaForge event management server. Read tools execute directly and return event, session, speaker, contact, sponsor, form, registration, and email data scoped to the authenticated identity. Write and communication tools never change data directly: each call creates a proposal that a human reviews and approves inside AgendaForge, so report proposed work as pending approval, not done. Authenticate with OAuth 2.1 via WorkOS AuthKit or an organization API key with mcp:read / mcp:write scopes; docs at https://agendaforge.app/auth.md.

Known tools 51

list_my_orgs

List the organizations you belong to, with slug and role.

Inferred read-only
list_events

List the organization's events: id, number, name, status, dates, timezone, city, and a deep link.

Inferred read-only
get_event

Get one event's overview: details, venue, deep links, and live counters (speakers, sessions by status, sponsors, tracks, rooms, submissions) in `stats`.

Inferred read-only
list_sessions

List the event's sessions (up to 200): title, status, time, room, track, and speaker names.

Inferred read-only
get_session

Get one session in full: description, speaker roster with confirmation status, room, track, time, and a deep link.

Inferred read-only
get_agenda

The event's scheduled agenda grouped by day and room, time-sorted.

Inferred read-only
list_forms

List the event's application/submission forms with status and per-status submission counts.

Inferred read-only
list_submissions

List a form's submissions (up to 100, newest first): submitter, status, first answer preview.

Inferred read-only
list_speaker_tasks

List the event's speaker portal tasks: title, type, status, due date, and the assigned contact id.

Inferred read-only
search

Search accessible organization records by keyword.

Inferred read-only
semantic_search

Run metered hybrid vector and text search over accessible organization records.

Inferred read-only
list_tracks_rooms

List an event's tracks and rooms, including track colors and room capacities when present.

Inferred read-only
check_schedule_conflicts

Check one or up to 20 proposed session placements for schedule conflicts without changing the schedule.

Inferred read-only
list_speakers

List up to 200 event speakers with name, title, company, session titles, confirmation state, and contact id.

Inferred read-only
get_contact

Get an event contact's profile, event status, sessions, and notes count.

Inferred read-only
search_contacts

Search or page through organization contacts, up to 50 per page.

Inferred read-only
get_review_progress

Get review rounds, completion percentages, and pending decisions for an event.

Inferred read-only
get_registration_stats

Get registration statistics and the active ticketing provider rail.

Inferred read-only
list_attendees

List up to 200 ticketed attendees for an event with ticket status and type, plus a truncated flag.

Inferred read-only
get_speaker_card_link

Get the latest public Design Studio speaker-card URL for an event contact, or url:null when none exists.

Inferred read-only
get_email_activity

List up to 100 recent event email sends and their queued, delivery, failure, bounce, complaint, or suppression status; optionally for one contact.

Potential side effects
list_email_templates

List organization and event email template names and ids only.

Potential side effects
draft_email

Render an email template preview without sending anything: returns the subject, the merged HTML body (size-capped), and a recipient preview.

Potential side effects
list_pending_approvals

List up to 50 pending Coordinator approvals with tool name, summary, status, creation time, and an event deep link.

Inferred read-only
add_contact_note

Record a PRIVATE internal CRM note about a contact.

Inferred read-only
send_speaker_reminder

Email a speaker a reminder about an outstanding portal task.

Potential side effects
send_speaker_message

Email a message to a speaker/contact.

Potential side effects
update_session

Update a session's content, taxonomy, schedule, or custom fields.

Potential side effects
delete_session

Permanently delete a session.

Potential side effects
remove_session_speaker

Remove a speaker assignment from a session (the contact itself is not deleted).

Potential side effects
update_sponsor

Update a sponsor's details or custom fields.

Potential side effects
delete_sponsor

Permanently delete a sponsor.

Potential side effects
update_contact

Update a contact's profile fields, tags, or custom fields.

Potential side effects
create_speaker_task

Create a portal task for a speaker (bio update, photo upload, etc.

Potential side effects
create_session

Create a new session for the event, unscheduled in the 'proposed' status.

Potential side effects
assign_speaker

Assign a contact as a speaker on a session.

Inferred read-only
manage_tracks

Create or rename a track for the event.

Potential side effects
manage_rooms

Create or rename a room for the event.

Potential side effects
set_submission_status

Move a form submission through the pipeline (submitted, under_review, approved, waitlisted, rejected).

Inferred read-only
decide_submission

Accept or reject up to 25 form submissions in one call.

Inferred read-only
create_session_from_submission

Turn an approved form submission into a session.

Inferred read-only
schedule_session

Place, move, swap, or unschedule a session.

Inferred read-only
check_in_attendee

Check an attendee in by ticket code or ticket id.

Inferred read-only
create_form

Create a new event form as a DRAFT (never active/published).

Potential side effects
update_form

Conversationally edit a DRAFT form by instruction.

Potential side effects
update_form_pipeline

Replace a form's submission pipeline stages (add, remove, rename, reorder).

Potential side effects
create_email_template

Draft an event email template (creating is not sending).

Potential side effects
invite_to_portal

Grant a contact access to a portal and send them the invitation email on approval.

Potential side effects
send_email

Send a templated email to a single contact.

Potential side effects
request_media_upload

Get a short-lived ONE-TIME upload link for the event's logo or cover image.

Potential side effects
create_event

Create a new DRAFT event for the organization: name, type, dates, timezone, and optional venue/virtual details.

Potential side effects

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.agendaforge-mcp]
url = "https://mcp.agendaforge.app/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agendaforge-mcp": {
      "type": "http",
      "url": "https://mcp.agendaforge.app/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agendaforge-mcp
Remote MCP URL: https://mcp.agendaforge.app/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "agendaforge-mcp": {
      "url": "https://mcp.agendaforge.app/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agendaforge-mcp": {
      "type": "http",
      "url": "https://mcp.agendaforge.app/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agendaforge-mcp",
  "transport": "streamable-http",
  "url": "https://mcp.agendaforge.app/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://mcp.agendaforge.app/mcp/docs

No auth detected

MCP server metadata

Name
agendaforge-docs-mcp
Version
1
Capabilities
tools
Server instructions

This server serves public AgendaForge marketing and docs content only. It has no access to account data or private event data.

Known tools 2

search_docs

Search AgendaForge public marketing and documentation content.

Inferred read-only
fetch_doc

Fetch one public AgendaForge markdown document by an exact route or URL from the public docs index.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.agendaforge-docs-mcp]
url = "https://mcp.agendaforge.app/mcp/docs"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agendaforge-docs-mcp": {
      "type": "http",
      "url": "https://mcp.agendaforge.app/mcp/docs"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agendaforge-docs-mcp
Remote MCP URL: https://mcp.agendaforge.app/mcp/docs

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "agendaforge-docs-mcp": {
      "url": "https://mcp.agendaforge.app/mcp/docs"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agendaforge-docs-mcp": {
      "type": "http",
      "url": "https://mcp.agendaforge.app/mcp/docs"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agendaforge-docs-mcp",
  "transport": "streamable-http",
  "url": "https://mcp.agendaforge.app/mcp/docs"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.