Connect your own MCP client
Point any HTTP-capable MCP client — Claude Desktop, Claude Code, or your own agent — at this server and use its tools with your language model. This server only answers Assembly data queries: it never handles your LLM calls, your prompts or your API key.
Endpoint
Streamable-HTTP MCP endpoint:
https://mcp.niassemblymcp.com/mcp/
Read-only. No account, no sign-up, no cost. Per-IP and overall rate limits apply to all traffic on this host.
Claude Desktop / Claude Code — native HTTP
Clients that speak streamable HTTP directly (merge into
claude_desktop_config.json, or see
claude_config.http.json):
{
"mcpServers": {
"ni-assembly": {
"url": "https://mcp.niassemblymcp.com/mcp/"
}
}
}
Clients that need a stdio bridge — mcp-remote
If your client only supports stdio subprocess servers, bridge to the HTTP endpoint with mcp-remote (needs Node.js):
{
"mcpServers": {
"ni-assembly": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.niassemblymcp.com/mcp/"
]
}
}
}