Features
- 🔨 42 Tools — A complete set of tools to interact with Openfort
- 🔐 Authentication — Directly authenticate from just plugging in the MCP
- 📄️ Initialize — Create new Openfort projects from the chat
- 🏗️ Scaffold — Build new apps from scratch using a single prompt
- 🔎 Context — Query the latest version of the documentation
- 💳️ Create — Generate wallets, users, contracts, and policies by just telling the LLM
Install Openfort's MCP server
This will allow your AI Assistant to interact with Openfort's tools on your behalf to create projects and manage them.
Ensure you have the following prerequisites:
Now, add it to your code editor. Based on your preferred tool, follow the instructions below:
Cursor
To integrate our MCP Server with Cursor you can either:
One-click installation
Edit the ~/.cursor/mcp.json
You can look it up on your system or find it under the Tools & Integrations tab in your Cursor Settings. Fill it with the following content:
{
"mcpServers": {
"openfort-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.openfort.io/sse"
]
}
}
}
Then you should see the Openfort MCP server listed on your Tools & Integrations tab without the need to restart. The authentication will trigger automatically.
Windsurf
For integration with Windsurf, replace the contents of the ~/.codeium/windsurf/mcp_config.json file with the following. It can be located at:
Windsurf Settings > Cascade > Plugins (MCP Servers) > View Raw Config
For MacOS/Linux
{
"mcpServers": {
"openfort-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.openfort.io/sse"
],
"disabled": false
}
}
}
For windows
{
"mcpServers": {
"openfort-mcp": {
"command": "cmd",
"args": [
"/c",
"npx",
"mcp-remote",
"https://mcp.openfort.io/sse"
],
"disabled": false
}
}
}
Visual Studio Code
To integrate an MCP Server into VS Code for use with GitHub Copilot, you should edit the .vscode/mcp.json file or run the MCP: Open User Configuration command which opens the file to add the following content:
{
"servers": {
"openfort-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.openfort.io/sse"
]
}
}
}
Claude Desktop
To add our MCP Server to Claude Desktop, click on Edit Config in the Developer tab under Settings to automatically create a file at:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Once created, fill it with the following content:
{
"mcpServers": {
"openfort-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.openfort.io/sse"
]
}
}
}
You will need to restart Claude Desktop after modifying the configuration file. Also, if you freshly installed Node.js you may need to reboot your computer too.
Discover all the capabilities
For more information on the available tools and how to use them, check out the MCP Server documentation.
Server Config
{
"mcpServers": {
"openfort-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.openfort.io/sse"
]
}
}
}