PageSpace Desktop can run local MCP servers, giving your workspace AI access to external tools — files on your machine, library documentation lookup, web fetch, or anything else in the MCP ecosystem.
This is the inverse of the PageSpace MCP server: that flow lets external tools read your PageSpace; this flow lets PageSpace call out to external tools.
PageSpace Desktop AI → Local MCP server → External tool
├── Filesystem
├── Documentation (Context7)
└── Any MCP server
Local MCP servers are bound to the desktop app on your machine. They are not exposed to the web version and cannot be triggered by other users.
mcpServers configuration (same shape as Claude Desktop's claude_desktop_config.json).The desktop app stores the config at ~/.pagespace/local-mcp-config.json (or the platform userData equivalent) and validates every entry before spawning a subprocess.
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/directory"]
},
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"]
}
}
}
Read and write local files. Scope the directory you pass.
{
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/you/projects"]
}
Up-to-date library documentation lookup — the agent can pull current docs for the framework or package it's working with instead of guessing from its training data.
{
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"]
}
The MCP ecosystem has servers for databases, code hosts, search, email, and more. Any server that speaks MCP and runs as a subprocess can drop into the config above — command + args + an optional env block for credentials. If a server needs an API key or token, it goes in env.
Local MCP servers inherit the desktop app's privileges on your machine:
This is a deliberate trade-off: the desktop app can do things the browser sandbox cannot, in exchange for your local authority over what it runs.
The web app cannot spawn local MCP servers. If you need to integrate external services from the web, use the PageSpace MCP server — external AI clients connect to your PageSpace with a token.
Search docs, blog posts, and more.