ManifolderMCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ManifolderMCPlist all scenes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ManifolderMCP
ManifolderMCP is a Model Context Protocol (MCP) server that allows Claude Code and other MCP clients to browse and edit Open Metaverse Spatial Fabric scenes.
It provides a thin MCP tool layer on top of the MVMF protocol libraries via the ManifolderClient JavaScript library.
ManifolderMCP is an open source project created and maintained by Patched Reality, Inc..
Related Projects
ManifolderClient — JavaScript client library used by this MCP server
Manifolder — Web-based explorer for visualizing Open Metaverse fabrics
Related MCP server: maige-3d-mcp
Setup
Prerequisites
Node.js >= 18
Access to a Fabric server
Install
npm install
npm run buildConfigure
Create ~/.config/manifolder-mcp/config.json:
{
"default": {
"fabricUrl": "https://example.com/fabric/fabric.msf",
"adminKey": "your-admin-token"
}
}Resource upload/download uses one of two transports, selected automatically per profile. Either way, resourceUrlPrefix is the URL prefix used to reference uploads in scenes (e.g., /objects/).
WebDAV (used when filesUrl is set) — file operations go over HTTPS WebDAV against the configured endpoint, authenticated with the profile's adminKey as a bearer token:
Field | Description |
| WebDAV endpoint for file operations (e.g., |
| URL prefix for referencing uploads in scenes (e.g., |
SCP/SSH (used when filesUrl is absent) — file operations go over SFTP:
Field | Description |
| SSH hostname for resource uploads |
| SSH username |
| Server path where files are written (supports |
| Path to SSH private key (supports |
| URL prefix for referencing uploads in scenes (e.g., |
Hosts listed in unsafeHosts skip TLS certificate verification (self-signed certs, incomplete chains) for both the fabric socket and WebDAV requests.
Multiple profiles can be defined (e.g., "default", "staging") and selected per-call via the profile parameter on any tool.
Add to MCP Client
Build first (npm run build), then register using an absolute path to dist/index.js.
Claude Code:
claude mcp add --scope user manifolder -- node /absolute/path/to/ManifolderMCP/dist/index.jsCodex:
codex mcp add manifolder -- node /absolute/path/to/ManifolderMCP/dist/index.jsGemini CLI:
gemini mcp add -s user manifolder node /absolute/path/to/ManifolderMCP/dist/index.jsManual config (Claude Code settings.json, Gemini settings.json, etc.):
{
"mcpServers": {
"manifolder": {
"command": "node",
"args": ["/absolute/path/to/ManifolderMCP/dist/index.js"]
}
}
}Tools
Every tool that touches a scope accepts one of scopeId, profile, or url to identify the target. Passing profile or url auto-connects if needed.
Connection & Scopes
Tool | Purpose |
| List connection profiles from config |
| Get scope connection state and info |
| List active scopes and relationships |
| Open a child scope from an attachment object |
| Close a scope and optionally its descendants |
Scenes
Tool | Purpose |
| List scenes (paginated) |
| Load a scene and return root object details |
| Create a new scene |
| Delete a scene and all children |
Objects
Tool | Purpose |
| Get full object details |
| List loaded objects under an anchor (shallow, paginated) |
| Search by name, position radius, or resource URL (paginated) |
| Find the smallest terrestrial parent for an Earth attachment and compute attachment geometry |
| Create object (3D model, container, or action resource) |
| Update name, transform, resource, bound, orbit, properties |
| Delete object and children |
| Reparent object |
| Batch create/update/delete/move across scopes |
Resources
Tool | Purpose |
| Upload a file (.glb, .png, .json, etc.) |
| Download a file from the server |
| List server files (supports path, recursive, glob filter) |
| Remove a file |
| Move or rename a file |
| Upload multiple files |
| Download multiple files |
| Delete multiple files |
| Move/rename multiple files |
Action Resources
Tool | Purpose |
| Get JSON schema for action resource types |
| Validate an action resource file |
Action types: action://pointlight, action://showtext, action://rotator, action://video.
Usage Example
> List my fabric profiles
> List scenes using profile "default"
> Open scene Playground
> Create an object named "Tree" under the Nature node
> Move it 5 meters northDevelopment
npm run dev # TypeScript watch mode
npm test # Unit tests
npm run test:integration # Integration tests (requires running server)
npm run test:record-fixtures # Record test fixtures from live server
npm run sync:manifolder-client # Sync ManifolderClient from ../Manifolder/Project Structure
src/
index.ts # MCP server entry point
config.ts # Connection profile loader
output.ts # Pagination helpers
agent-guide.md # Tool docs served to MCP clients
client/ # ManifolderClient (synced from ../Manifolder/)
tools/ # MCP tool implementations
storage/ # SCP-based file storage
vendor/ # MVMF protocol libraries (Node.js shimmed)The ManifolderClient is shared with the sibling Manifolder project. Edit there, then npm run sync:manifolder-client to pull changes here.
License
Licensed under the Apache License, Version 2.0. See the LICENSE file for details.
Attribution
This project uses the MVMF libraries developed by Metaversal Corporation.
See the NOTICE file for full attribution details.
Contributing
Contributions are welcome. By submitting a pull request, you agree that your contribution will be licensed under the Apache License, Version 2.0.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PatchedReality/ManifolderMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server