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
{
"name": "nx-mcp",
"version": "0.0.0",
"main": "main.js",
"description": "A Model Context Protocol server implementation for Nx",
"author": {
"name": "Narwhal Technologies Inc",
"email": "hello@nrwl.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx-console.git"
},
"homepage": "https://nx.dev",
"bugs": {
"url": "https://github.com/nrwl/nx-console/issues"
},
"keywords": [
"nx",
"monorepo",
"ai",
"mcp",
"model",
"context",
"protocol"
],
"bin": "main.js",
"files": [
"main.js",
"README.md",
"CHANGELOG.md"
],
"mcpName": "io.github.nrwl/nx-mcp",
"nx": {
"name": "nx-mcp",
"projectType": "application",
"sourceRoot": "apps/nx-mcp/src",
"tags": [
"type:mcp"
],
"targets": {
"build": {
"executor": "@nx/esbuild:esbuild",
"outputs": [
"{options.outputPath}"
],
"defaultConfiguration": "production",
"options": {
"platform": "node",
"outputPath": "dist/apps/nx-mcp",
"outputFileName": "main.js",
"format": [
"cjs"
],
"thirdParty": true,
"main": "apps/nx-mcp/src/main.ts",
"tsConfig": "apps/nx-mcp/tsconfig.app.json",
"sourcemap": false,
"minify": true,
"assets": [
"apps/nx-mcp/README.md",
"apps/nx-mcp/CHANGELOG.md"
],
"esbuildOptions": {
"mainFields": [
"module",
"main"
],
"treeShaking": true,
"outExtension": {
".js": ".js"
}
}
},
"configurations": {
"production": {},
"debug": {
"minify": false,
"sourcemap": true
}
}
},
"setup-publish": {
"command": "node setup-publish.js",
"cache": false,
"options": {
"cwd": "apps/nx-mcp"
},
"dependsOn": [
"build"
]
},
"serve": {
"command": "npx @modelcontextprotocol/inspector@latest node dist/apps/nx-mcp/main.js",
"dependsOn": [
"build"
]
}
}
}
}