Productivity
agendaforge.app
Manages conference events, sessions, and organizations, providing details and stats.
ENDPOINT 1
https://mcp.agendaforge.app/mcp
MCP server metadata
- Name
- agendaforge-mcp
- Version
- 1
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_eventsList the organization's events: id, number, name, status, dates, timezone, city, and a deep link.
Inferred read-onlyget_eventGet one event's overview: details, venue, deep links, and live counters (speakers, sessions by status, sponsors, tracks, rooms, submissions) in `stats`.
Inferred read-onlylist_sessionsList the event's sessions (up to 200): title, status, time, room, track, and speaker names.
Inferred read-onlyget_sessionGet one session in full: description, speaker roster with confirmation status, room, track, time, and a deep link.
Inferred read-onlylist_formsList the event's application/submission forms with status and per-status submission counts.
Inferred read-onlylist_submissionsList a form's submissions (up to 100, newest first): submitter, status, first answer preview.
Inferred read-onlylist_speaker_tasksList the event's speaker portal tasks: title, type, status, due date, and the assigned contact id.
Inferred read-onlysemantic_searchRun metered hybrid vector and text search over accessible organization records.
Inferred read-onlylist_tracks_roomsList an event's tracks and rooms, including track colors and room capacities when present.
Inferred read-onlycheck_schedule_conflictsCheck one or up to 20 proposed session placements for schedule conflicts without changing the schedule.
Inferred read-onlylist_speakersList up to 200 event speakers with name, title, company, session titles, confirmation state, and contact id.
Inferred read-onlyget_contactGet an event contact's profile, event status, sessions, and notes count.
Inferred read-onlyget_review_progressGet review rounds, completion percentages, and pending decisions for an event.
Inferred read-onlyget_registration_statsGet registration statistics and the active ticketing provider rail.
Inferred read-onlylist_attendeesList up to 200 ticketed attendees for an event with ticket status and type, plus a truncated flag.
Inferred read-onlyget_speaker_card_linkGet the latest public Design Studio speaker-card URL for an event contact, or url:null when none exists.
Inferred read-onlyget_email_activityList up to 100 recent event email sends and their queued, delivery, failure, bounce, complaint, or suppression status; optionally for one contact.
Potential side effectslist_email_templatesList organization and event email template names and ids only.
Potential side effectsdraft_emailRender an email template preview without sending anything: returns the subject, the merged HTML body (size-capped), and a recipient preview.
Potential side effectslist_pending_approvalsList up to 50 pending Coordinator approvals with tool name, summary, status, creation time, and an event deep link.
Inferred read-onlysend_speaker_reminderEmail a speaker a reminder about an outstanding portal task.
Potential side effectsupdate_sessionUpdate a session's content, taxonomy, schedule, or custom fields.
Potential side effectsremove_session_speakerRemove a speaker assignment from a session (the contact itself is not deleted).
Potential side effectscreate_speaker_taskCreate a portal task for a speaker (bio update, photo upload, etc.
Potential side effectscreate_sessionCreate a new session for the event, unscheduled in the 'proposed' status.
Potential side effectsset_submission_statusMove a form submission through the pipeline (submitted, under_review, approved, waitlisted, rejected).
Inferred read-onlyupdate_form_pipelineReplace a form's submission pipeline stages (add, remove, rename, reorder).
Potential side effectsinvite_to_portalGrant a contact access to a portal and send them the invitation email on approval.
Potential side effectsrequest_media_uploadGet a short-lived ONE-TIME upload link for the event's logo or cover image.
Potential side effectscreate_eventCreate a new DRAFT event for the organization: name, type, dates, timezone, and optional venue/virtual details.
Potential side effectsCONNECT 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
MCP server metadata
- Name
- agendaforge-docs-mcp
- Version
- 1
This server serves public AgendaForge marketing and docs content only. It has no access to account data or private event data.
Known tools 2
fetch_docFetch one public AgendaForge markdown document by an exact route or URL from the public docs index.
Inferred read-onlyCONNECT 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.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.