PageSpace Desktop can connect to local MCP servers, giving your workspace AI access to external tools like the filesystem, GitHub, databases, and more.
Unlike the PageSpace MCP server (which lets external tools connect to PageSpace), desktop MCP servers let PageSpace AI reach out to external systems:
PageSpace Desktop AI → Local MCP Server → External System
├── Filesystem
├── GitHub
├── PostgreSQL
└── Any MCP server
MCP servers run locally on your machine and are only accessible to the desktop app. They are not exposed to the web version or other users.
The configuration format is identical to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/directory"],
"env": {}
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}
Read and write local files. Useful for AI agents that need to work with local project files.
{
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/you/projects"]
}
Interact with GitHub repositories, issues, and pull requests.
{
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
Query and manage PostgreSQL databases.
{
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"]
}
Web search through Brave's search API.
{
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your_key_here"
}
}
Desktop MCP servers run with the desktop app's local privileges:
This is a deliberate security trade-off: desktop MCP servers can do more (access local files, databases, etc.) because they run locally under your control, unlike the web version which is sandboxed to PageSpace's API.
Local MCP servers require the PageSpace Desktop app. The web version cannot run local MCP servers because it runs in a browser sandbox.
If you need external integrations in the web version, use the PageSpace MCP server approach instead — external AI tools connect to PageSpace via tokens.
Search docs, blog posts, and more.