- Home
- MCP servers
- Openfort Model Context Protocol
Openfort Model Context Protocol
- typescript
3
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"openfort-xyz--deprecated-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.openfort.io/sse"
]
}
}
}Openfort MCP Server is a plug‑and‑play layer that lets your AI assistants interact with Openfort tools to create projects, manage configurations, and query data. It enables secure authentication, immediate project initialization, and scalable app scaffolding within your workflow.
How to use
You use the MCP Server by connecting an MCP client to the server and then issuing prompts to your AI assistant. The server exposes a set of tools that the assistant can call automatically as you work on Openfort projects, wallets, policies, and configurations. Your focus stays on what you want to achieve while the MCP handles the orchestration with Openfort services.
How to install
Prerequisites you need before installation:
-
Node.js must be installed on your machine.
-
An Openfort account to access the services.
Openfort MCP server setup steps
-
Install the MCP server package using your preferred method, for example via npm.
-
Add integration rules for your LLM to remind it about tool availability and correct usage.
-
Create a new Openfort project through the MCP tooling or your editor prompts.
-
Run through common issues and debug iteratively as you scaffold your project.
-
Explore the full range of capabilities by prompting the assistant to use the available tools.
MCP client integrations
You can integrate the MCP Server with popular editors and tools by adding a small configuration that points to the remote MCP. Here are example configurations you can adapt to your environment.
Cursor integration example
One‑click installation is available in some setups. The MCP can be registered under a tool named for the server and wired to a remote endpoint.
Windsurf integration example
Add a Windsurf configuration that points to the MCP remote runner. Use the provided JSON snippet to enable the server locally.
Visual Studio Code integration example
In VS Code, you can add an MCP server entry to your editor configuration to enable Copilot‑style assistance with the Openfort MCP.
Claude Desktop integration example
To run the MCP server from Claude Desktop, create a configuration file that specifies the MCP server and its arguments, then restart Claude Desktop if needed.
Configuration snippets for MCP clients
{
"mcpServers": {
"openfort-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.openfort.io/sse"
]
}
}
}