Skip to content

Commit 077c240

Browse files
committed
chore: clean up main
1 parent b684a0f commit 077c240

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@
1010
".": "./dist/index.js"
1111
},
1212
"files": [
13-
"dist",
14-
"bin"
13+
"dist"
1514
],
1615
"scripts": {
1716
"dev": "tsc --watch",
1817
"build": "tsc && cp -r src/mcp-prompts/*.md dist/mcp-prompts/",
1918
"prepublishOnly": "pnpm run build",
2019
"clean": "rm -rf dist",
21-
"test": "echo \"No tests yet\"",
2220
"typecheck": "tsc --noEmit"
2321
},
2422
"dependencies": {

src/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@ async function main() {
105105
await server.connect(transport)
106106

107107
// Log to stderr so it doesn't interfere with MCP protocol on stdout
108-
console.error("Next.js DevTools MCP Server running on stdio")
109-
console.error(`Available tools: ${Object.keys(MCP_TOOLS).join(", ")}`)
110-
console.error(`Available prompts: ${Object.keys(MCP_PROMPTS).join(", ")}`)
108+
console.error("Next.js DevTools MCP Server connected")
111109
}
112110

113111
// Run the server

0 commit comments

Comments
 (0)