Wire Foldspace up from the AI coding tool you already use. The fastest path is the Foldspace
plugin — your coding agent adds the agent, connects your authenticated users, and discovers
your product’s actions for you. Or connect the MCP server directly to your editor to browse
and implement AI Actions by hand.
Once you have your Agent Key, skip the manual wiring and let your AI coding tool do the
integration:
Set up with your AI coding tool
Install the Foldspace plugin and your AI coding tool will integrate Foldspace for
you: add the agent, connect your authenticated users, and discover your product's
actions.
Using Claude on the web or desktop? Add Foldspace as a custom connector. The link pre-fills
the name and URL, so all you do is confirm and authenticate:
The Model Context Protocol (MCP) is a standard for giving AI models real-time, external context. Foldspace exposes two MCP servers — add either or both to your editor:
Docs MCP
Product MCP
Endpoint
https://docs.foldspace.ai/mcp
https://api.foldspace.ai/mcp
Auth
Public (no key)
OAuth (sign in from your client)
Gives your assistant
Semantic search + read access to these docs (search_docs, fetch_page)
Access to your account’s AI Actions: list them, read schemas, generate handlers
Best for
Any developer — ask questions about Foldspace while you code
Building on your own Foldspace agent
Start with the Docs MCP — there’s nothing to configure but a URL. Add the Product MCP when you want your assistant to work with your own AI Actions.
The Docs MCP is read-only and needs no API key. Point any MCP client at https://docs.foldspace.ai/mcp. It exposes two tools — search_docs (semantic search over the docs) and fetch_page (fetch a page as Markdown) — so you can ask your assistant things like “how do I configure JWT auth in Foldspace?” and it answers from the current docs.
The Product MCP exposes your Foldspace AI Actions as callable tools. Connecting your editor
to it lets your AI assistant:
List all available AI Actions in your Foldspace account.
Get the detailed schema for any action, including its required parameters.
Generate boilerplate code for implementing an action handler in your application.
It’s a hosted HTTP server at https://api.foldspace.ai/mcp. There’s no API key to paste and
nothing to install. The first time your client connects, Foldspace opens a browser window
for you to sign in, and the client stores the resulting OAuth token itself.