Skip to main content
Glama
nrwl

Nx MCP Server

Official
by nrwl
graph-visualization.ts938 B
/** * Creates a standard response message for project graph visualization */ export function getProjectGraphVisualizationMessage( projectName?: string, ): string { if (projectName) { return `Opening project graph for ${projectName}. There can only be one graph visualization open at a time so avoid similar tool calls unless the user specifically requests it.`; } return 'Opening full project graph. There can only be one graph visualization open at a time so avoid similar tool calls unless the user specifically requests it.'; } /** * Creates a standard response message for task graph visualization */ export function getTaskGraphVisualizationMessage( projectName: string, taskName: string, ): string { return `Opening graph focused on task ${taskName} for project ${projectName}. There can only be one graph visualization open at a time so avoid similar tool calls unless the user specifically requests it.`; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nrwl/nx-console'

If you have feedback or need assistance with the MCP directory API, please join our Discord server