From 7d4c4a04fda52895fe1f2b87419f034b0c38e7aa Mon Sep 17 00:00:00 2001 From: George Pickett Date: Fri, 4 Sep 2026 19:19:38 -0700 Subject: [PATCH] docs(mcp): add anonymous Parallel Search config example Co-Authored-By: Codex --- backend/chainlit/config.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/backend/chainlit/config.py b/backend/chainlit/config.py index db03d4c060..ec1053681f 100644 --- a/backend/chainlit/config.py +++ b/backend/chainlit/config.py @@ -173,6 +173,18 @@ # type = "streamable-http" # url = "https://mcp.example.com/mcp" + # Parallel Search: web_search and web_fetch without an account or API key. + # Free anonymous access is rate limited. Setup: set enabled = true above, + # uncomment the four lines below, restart the app, and connect parallel-search + # in the MCP menu. Disconnect it there to stop using its tools. + # Once connected, your app/agent can call the tools, sending queries, URLs, + # and any supplied objectives, context, or metadata to Parallel. + # https://docs.parallel.ai/integrations/mcp/search-mcp + # [[features.mcp.servers]] + # name = "parallel-search" + # type = "streamable-http" + # url = "https://search.parallel.ai/mcp" + [features.mcp.user_servers] # Opt-in: allow end-users to connect their own SSE or streamable-http MCP servers. # stdio is never user-provided (server-side config only).