Spiking - Symbol MCP Server.
Symbol Model Context Protocol (MCP) is a server designed for developers working with the Symbol blockchain, providing endpoints for various functionalities related to the Symbol ecosystem.
To use the Symbol MCP, you can generate a ZOD client using the provided command in your terminal, which connects to the Symbol API and allows you to interact with the blockchain.
Use these steps to connect Symbol Model Context Protocol (MCP) in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"spike-mcp-symbol-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-mcp-symbol-server-husqvaluna"
]
}
}
}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": {
"spike-mcp-symbol-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-mcp-symbol-server-husqvaluna"
]
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"spike-mcp-symbol-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-mcp-symbol-server-husqvaluna"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"spike-mcp-symbol-server-husqvaluna": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-mcp-symbol-server-husqvaluna"
]
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"spike-mcp-symbol-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-mcp-symbol-server-husqvaluna"
]
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"spike-mcp-symbol-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-mcp-symbol-server-husqvaluna"
]
}
}
}The Symbol MCP serves as a bridge for developers to interact with the Symbol blockchain efficiently.
You can generate a client by running the provided npx command with the OpenAPI specification URL.
Yes, detailed documentation can be found at the Symbol Developers endpoints.