Overview
The Symbol Model Context Protocol (MCP) is a server designed to facilitate communication and interaction with Symbol's API, enabling developers to build applications that leverage Symbol's blockchain technology.
To use the MCP server, you can generate a ZOD client using the provided command in your terminal, which sets up the necessary client configuration for interacting with the Symbol API.
- Easy integration with Symbol's API through generated clients. - Supports TypeScript for enhanced development experience. - Provides example configurations for quick setup.
- Building decentralized applications (dApps) on the Symbol blockchain.
- Integrating Symbol's blockchain features into existing applications.
- Facilitating communication between different components of a Symbol-based ecosystem.
Add to your AI client
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.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"spike-symbol-mcp-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-symbol-mcp-server-husqvaluna"
]
}
}
}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": {
"spike-symbol-mcp-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-symbol-mcp-server-husqvaluna"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"spike-symbol-mcp-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-symbol-mcp-server-husqvaluna"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"spike-symbol-mcp-server-husqvaluna": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-symbol-mcp-server-husqvaluna"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"spike-symbol-mcp-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-symbol-mcp-server-husqvaluna"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"spike-symbol-mcp-server-husqvaluna": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-spike-symbol-mcp-server-husqvaluna"
]
}
}
}FAQ
What programming language is used for the MCP Server?
The MCP Server is built using TypeScript, which allows for type-safe development.
Is there any official documentation available?
Yes, you can find the official documentation and endpoints for Symbol developers [here](https://symbol.github.io/symbol-openapi/v1.0.4/).
How can I contribute to the MCP Server?
Contributions are welcome! You can check the repository on GitHub for guidelines on how to contribute.