UNPKG

npmplus-mcp-server

Version:

Production-ready MCP server for intelligent JavaScript package management. Works with Claude, Windsurf, Cursor, VS Code, and any MCP-compatible AI editor.

15 lines (12 loc) 225 B
// This creates a circular dependency with moduleB const moduleB = require('./moduleB'); function getName() { return 'Module A'; } function callB() { return moduleB.getName(); } module.exports = { getName, callB };