Overview
Polkassembly MCP Server is a server designed to facilitate communication with the Polkassembly API using the MCP protocol.
To use the Polkassembly MCP Server, clone the repository from GitHub, install the necessary dependencies using Yarn, and run the development server.
- Easy setup and installation via GitHub - Utilizes Yarn for dependency management - Supports real-time communication with the Polkassembly API
- Integrating with the Polkassembly API for data retrieval.
- Developing applications that require real-time updates from the Polkassembly ecosystem.
- Testing and debugging API interactions in a local environment.
Add to your AI client
Use these steps to connect Polkassembly MCP Server 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": {
"polkassembly-api-mcp-interweb-it": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-polkassembly-api-mcp-interweb-it"
]
}
}
}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": {
"polkassembly-api-mcp-interweb-it": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-polkassembly-api-mcp-interweb-it"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"polkassembly-api-mcp-interweb-it": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-polkassembly-api-mcp-interweb-it"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"polkassembly-api-mcp-interweb-it": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-polkassembly-api-mcp-interweb-it"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"polkassembly-api-mcp-interweb-it": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-polkassembly-api-mcp-interweb-it"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"polkassembly-api-mcp-interweb-it": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-polkassembly-api-mcp-interweb-it"
]
}
}
}FAQ
What is the license for Polkassembly MCP Server?
The project is licensed under the BSD-3-Clause license.
Is there any official support for this project?
The project is not officially supported, but community support may be available.
What programming language is used in this project?
The project is developed using TypeScript.