@neondatabase/mcp-server-neon
Advanced tools
Comparing version 0.1.4-beta.0 to 0.1.4-beta.1
@@ -11,2 +11,10 @@ import { log } from 'console'; | ||
{ | ||
name: '__node_version', | ||
description: `Get the Node.js version used by the MCP server`, | ||
inputSchema: { | ||
type: 'object', | ||
properties: {}, | ||
}, | ||
}, | ||
{ | ||
name: 'list_projects', | ||
@@ -444,2 +452,9 @@ description: `List all Neon projects in your account.`, | ||
export const NEON_HANDLERS = { | ||
__node_version: async (request) => { | ||
return { | ||
toolResult: { | ||
content: [{ type: 'text', text: process.version }], | ||
}, | ||
}; | ||
}, | ||
list_projects: async (request) => { | ||
@@ -446,0 +461,0 @@ const projects = await handleListProjects(); |
{ | ||
"name": "@neondatabase/mcp-server-neon", | ||
"version": "0.1.4-beta.0", | ||
"version": "0.1.4-beta.1", | ||
"description": "MCP server for interacting with Neon Management API and databases", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
36380
928