Overview
XACHE is a modern, responsive website designed for the XACHE crypto trading platform, providing users with a seamless trading experience.
To use XACHE, clone the repository from GitHub, open the src/index.html file in your browser, and for development, utilize a local server like Live Server for VS Code.
- Responsive design for various devices - Modern UI with glassmorphism effects - Smooth animations and transitions - Mobile-first approach for optimal user experience
- Trading cryptocurrencies on a user-friendly platform
- Accessing market data and analytics through a responsive interface
- Engaging with a modern design that enhances user interaction
Add to your AI client
Use these steps to connect XACHE - Crypto Trader Website 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": {
"goose-myblockcities": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-myblockcities"
]
}
}
}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": {
"goose-myblockcities": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-myblockcities"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"goose-myblockcities": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-myblockcities"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"goose-myblockcities": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-myblockcities"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"goose-myblockcities": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-myblockcities"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"goose-myblockcities": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-myblockcities"
]
}
}
}FAQ
Is XACHE compatible with all browsers?
Yes! XACHE supports the latest versions of Chrome, Firefox, Safari, and Edge.
How can I set up XACHE locally?
Simply clone the repository and open `src/index.html` in your browser or use a local server for development.
What technologies are used in XACHE?
The project is built using vanilla HTML, CSS, and JavaScript for maximum compatibility and performance.