mcp-server-curio
The MCP server is used for the Curio project of Filecoin ecosystem.
Overview
MCP Server Curio is a server component designed for the Curio project within the Filecoin ecosystem, aimed at enhancing data storage and retrieval functionalities.
To use MCP Server Curio, developers can integrate it into their applications by following the setup instructions provided in the GitHub repository.
- Integration with the Filecoin ecosystem for decentralized storage. - Support for efficient data management and retrieval. - Open-source with an MIT license for community contributions.
- Building decentralized applications that require reliable data storage.
- Enhancing existing Filecoin projects with improved server capabilities.
- Facilitating research and development in decentralized storage solutions.
Add to your AI client
Use these steps to connect mcp-server-curio in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-curio-xiaoliwe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-curio-xiaoliwe"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-curio-xiaoliwe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-curio-xiaoliwe"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-curio-xiaoliwe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-curio-xiaoliwe"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-curio-xiaoliwe": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-curio-xiaoliwe"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-curio-xiaoliwe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-curio-xiaoliwe"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-curio-xiaoliwe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-curio-xiaoliwe"
]
}
}
}FAQ
What is the purpose of MCP Server Curio?
It serves as a backend server for the Curio project, focusing on data management within the Filecoin ecosystem.
Is MCP Server Curio open-source?
Yes, it is open-source and available under the MIT license.
How can I contribute to the project?
Contributions can be made through GitHub by submitting pull requests or reporting issues.