slug:storage workspace running in the current environment). It can be consumed two ways: as a remote MCP server that Agent Factory agents call as tools, or as a Builder app whose instructions you call directly from DSUL automations. It exposes the full Storage REST API — files, vector stores, vector-store files, web crawling, RBAC access bindings, per-store API keys, agent skills and admin diagnostics — grouped into 8 entity tools covering ~38 operations.
Unlike third-party SaaS connectors, this connector requires no credential to paste. It runs in the installing workspace’s app-instance context and propagates the caller’s Prisme.ai identity to the Storage backend over the platform’s cross-workspace forward-auth mechanism: every call inherits the user × workspace permissions of whoever triggered it, and the Storage backend enforces its own RBAC bindings on top. Agents are identified by the capability Scope context_id,agent_id,user_id; credentials are resolved server-side.
Files & Downloads
Upload by URL or bytes, list, download, share and delete files in workspace-scoped storage.
Vector Stores & RAG
Create vector stores, attach files (by
file_id or URL), trigger reindex, run semantic search, monitor crawling.Access, Keys & Skills
Grant/revoke RBAC bindings per principal, create and rotate per-store API keys, manage reusable agent skills.
Who is this for?
This connector is used by three different roles. Jump to the section that matches yours — each one is self-contained.Agent builder
You build agents in Agent Factory and want them to manage files, vector stores and RAG. → Agent builder tab.
Platform admin
You run the platform and want to expose Storage as a reusable capability once for everyone. → Platform admin setup accordion below.
Workspace builder
You write Builder automations (DSUL) that call Storage instructions directly. → Workspace builder tab.
Prerequisites
- A Prisme.ai workspace with the Prisme.ai Storage app installed.
- The Storage backend ships pre-wired to the current environment (sandbox or prod) — there is no
baseUrl, service URL or API token to configure. The connector resolves the Storage workspace viaslug:storageand forwards the caller’s authentication automatically. - The end user (or agent’s calling user) must hold the appropriate role on the target vector store / file:
viewer— read files, list vector stores, run semantic search.contributor— add/remove files in a vector store, trigger recrawls.owner— manage access bindings, API keys and skills; delete vector stores.admin(platform admin) —admin.getStats,admin.healthCheck, cross-workspace listings (scope=all).
- For URL-based ingestion (
files.uploadwithurl=…,vectorStoreFiles.addwithurl=…), the URL must be reachable from the Storage backend (a public URL or a Prisme.aishare_token).
Platform admin (Governance) — one-time platform setup
Platform admin (Governance) — one-time platform setup
No platform-level credential. This connector carries no third-party API key — each workspace installs the app and the caller’s Prisme.ai identity is forwarded to the Storage backend automatically. There is nothing to register in Studio Secrets and no per-tenant credential to provision.
Declare the capability in AI Governance
1
Open AI Governance > Capabilities
Create (or edit) a Prisme.ai Storage capability.
2
Point it at the MCP endpoint
Set the capability’s MCP server URL to the connector’s MCP Endpoint (read from the installed app instance), and set its Scope to:The
agent_id and user_id in the scope are what let the connector identify the calling agent and forward the user’s identity to the Storage backend.3
Make it available to agent builders
Once created, the capability appears in the capability picker for agent builders in your organization. Access to the catalog follows your organization’s existing roles; there is no per-capability role grant for this connector.
4
Smoke-test
From an agent that has the capability, ask it to list vector stores or files. The call runs as the agent’s user, and the Storage backend returns only the resources that user can see.
- Agent builder (Agent Factory)
- Workspace builder (DSUL)
Agent builder
Goal: let an agent you build in Agent Factory manage files, vector stores and RAG through the Storage MCP tools.Before an agent can call the connector, a Workspace builder must have installed the Prisme.ai Storage app in a workspace (see the Workspace builder tab) — or a Platform admin must have published the capability in AI Governance (see the Platform admin setup accordion above).
agent_id and user_id that Agent Factory injects through the capability Scope; the Storage backend then enforces its own RBAC bindings against that user — there is no credential for the agent to hold or paste.1
Get the MCP endpoint
Install the Prisme.ai Storage app in your workspace (see the Workspace builder tab) and copy its MCP Endpoint from the app instance configuration. If a Platform admin already published the capability, you can skip straight to the capability picker.
2
Add the capability to your agent
In your agent, add a capability pointing at the MCP Endpoint URL (or pick the published Prisme.ai Storage capability from the catalog), and set its Scope to:The
agent_id lets the connector identify the calling agent; user_id is what propagates the caller’s identity to the Storage backend so its RBAC applies. Without user_id in the scope, calls run anonymously and the backend rejects them.3
Use it
Ask the agent to manage files or knowledge — it calls the Storage tools, and every call is scoped to what the calling user is allowed to see.
Brief the agent in its system prompt
Wiring the capability is not enough — the agent must know the tools exist and when to reach for them. Copy-pasteable starter:Legacy AI Knowledge agents (no native MCP picker): add the connector under Advanced > Tools > MCP and paste the MCP Endpoint URL. The agent’s identity is still propagated so the Storage backend can resolve the caller’s RBAC.
Available Tools
The MCP server exposes 8 entity-level tools, each with anaction argument that selects the operation. Every tool also accepts an outputFormat argument (verbose default / structured / both).files
vectorStores
vectorStoreFiles
crawling
access
apiKeys
skills
admin
Output Formats
Every tool accepts anoutputFormat argument that controls the MCP response shape:verbose(default) — human-readable text optimized for LLM consumption.structured— machine-readable JSON instructuredContent.both— the structured payload, with its JSON also rendered as text.
Tool Details
vectorStores (action: create)
vectorStoreFiles (action: add)
vectorStores (action: search)
access (action: grant)
apiKeys (action: create)
Error Handling
Common Issues
“The calling agent could not be identified” — The MCP capability Scope does not declareagent_id / user_id, so Agent Factory never injects the caller identity. Set the Scope to context_id,agent_id,user_id on the capability.
“Anonymous request rejected” (401) — The caller’s Prisme.ai identity did not make it through to the Storage backend. This usually means the call is being made from a tool client that does not propagate the workspace identity. Use the Agent Factory capability or call from a DSUL automation — both forward identity correctly — or pass an explicit accessToken override.
Forbidden on a store you can see (403) — Listing a store does not imply write access. The operation requires a higher role (e.g. contributor to add files, owner to grant access or manage keys). Ask the store owner to grant the right binding via access.grant.
addFileToVectorStore ignored my file_name when using url — URL-based ingestion of vector-store files drops the file_name argument. For filename control, upload the file first via files.upload and then add it via vectorStoreFiles.add with file_id.
force_recrawl had no effect — Also pass the original url argument; the backend keys recrawl identity off the URL, not the file_id.
Empty list when listing vector stores — By default listVectorStores returns only scope: own. Add scope: shared to include stores shared with you, or scope: all if you are a platform admin.
External Resources
RAG & Vector Stores
How vector stores, embeddings and the RAG crawling pipeline work in Prisme.ai.
Tool Agents
Learn how Agent Factory agents consume MCP tools and capabilities.