# Exceptionless — MCP server on mcp.ai > Connect your Exceptionless account and use 4 tools for developer tools straight from your AI agent. Connect with your own API key. Exceptionless provides one-project event ingestion and client configuration using a project-bound client API key. By: mcp.ai · official Page: https://mcp.ai/exceptionless ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_exceptionless?ms=1787293740000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/exceptionless/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/exceptionless/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/exceptionless/skill.md Postman collection (v2.1): https://mcp.ai/exceptionless/postman.json ## Tools - exceptionless_close_session(session_id: string) — Close an active session in the Exceptionless project bound to the connected client API key. This records irreversible session-closure telemetry and returns only an acceptance confirmation. - exceptionless_get_client_configuration() — Return the configuration for the single Exceptionless project bound to the connected client API key. Configuration values can contain sensitive project settings; request and expose them only when need - exceptionless_submit_event(data?: object, tags?: string[], type: string, source: string, message: string) — Submit one structured telemetry event to the Exceptionless project bound to the connected client API key. Acceptance is asynchronous and does not confirm that the event was processed or persisted. - exceptionless_submit_session_heartbeat(session_id: string) — Record an active session heartbeat in the Exceptionless project bound to the connected client API key. Use Close Session separately when the session ends. Despite using GET upstream, this tool writes ## Example prompts - "What can I do in Exceptionless?" - "Show me a summary of my Exceptionless account" ## Links Docs: https://mcp.ai/docs/mcps/exceptionless Website: https://mcp.ai/mcps/exceptionless