mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-17 23:53:24 +02:00
144 lines
3.4 KiB
JavaScript
144 lines
3.4 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
import {
|
|
CallToolRequestSchema,
|
|
ListResourcesRequestSchema,
|
|
ListToolsRequestSchema,
|
|
ReadResourceRequestSchema,
|
|
} from "@modelcontextprotocol/sdk/types.js";
|
|
import pg from "pg";
|
|
|
|
const server = new Server(
|
|
{
|
|
name: "example-servers/postgres",
|
|
version: "0.1.0",
|
|
},
|
|
{
|
|
capabilities: {
|
|
resources: {},
|
|
tools: {},
|
|
},
|
|
},
|
|
);
|
|
|
|
const args = process.argv.slice(2);
|
|
if (args.length === 0) {
|
|
console.error("Please provide a database URL as a command-line argument");
|
|
process.exit(1);
|
|
}
|
|
|
|
const databaseUrl = args[0];
|
|
|
|
const resourceBaseUrl = new URL(databaseUrl);
|
|
resourceBaseUrl.protocol = "postgres:";
|
|
resourceBaseUrl.password = "";
|
|
|
|
const pool = new pg.Pool({
|
|
connectionString: databaseUrl,
|
|
});
|
|
|
|
const SCHEMA_PATH = "schema";
|
|
|
|
server.setRequestHandler(ListResourcesRequestSchema, async () => {
|
|
const client = await pool.connect();
|
|
try {
|
|
const result = await client.query(
|
|
"SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'",
|
|
);
|
|
return {
|
|
resources: result.rows.map((row) => ({
|
|
uri: new URL(`${row.table_name}/${SCHEMA_PATH}`, resourceBaseUrl).href,
|
|
mimeType: "application/json",
|
|
name: `"${row.table_name}" database schema`,
|
|
})),
|
|
};
|
|
} finally {
|
|
client.release();
|
|
}
|
|
});
|
|
|
|
server.setRequestHandler(ReadResourceRequestSchema, async (request) => {
|
|
const resourceUrl = new URL(request.params.uri);
|
|
|
|
const pathComponents = resourceUrl.pathname.split("/");
|
|
const schema = pathComponents.pop();
|
|
const tableName = pathComponents.pop();
|
|
|
|
if (schema !== SCHEMA_PATH) {
|
|
throw new Error("Invalid resource URI");
|
|
}
|
|
|
|
const client = await pool.connect();
|
|
try {
|
|
const result = await client.query(
|
|
"SELECT column_name, data_type FROM information_schema.columns WHERE table_name = $1",
|
|
[tableName],
|
|
);
|
|
|
|
return {
|
|
contents: [
|
|
{
|
|
uri: request.params.uri,
|
|
mimeType: "application/json",
|
|
text: JSON.stringify(result.rows, null, 2),
|
|
},
|
|
],
|
|
};
|
|
} finally {
|
|
client.release();
|
|
}
|
|
});
|
|
|
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
return {
|
|
tools: [
|
|
{
|
|
name: "query",
|
|
description: "Run a read-only SQL query",
|
|
inputSchema: {
|
|
type: "object",
|
|
properties: {
|
|
sql: { type: "string" },
|
|
},
|
|
},
|
|
},
|
|
],
|
|
};
|
|
});
|
|
|
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
if (request.params.name === "query") {
|
|
const sql = request.params.arguments?.sql as string;
|
|
|
|
const client = await pool.connect();
|
|
try {
|
|
await client.query("BEGIN TRANSACTION READ ONLY");
|
|
const result = await client.query(sql);
|
|
return {
|
|
content: [{ type: "text", text: JSON.stringify(result.rows, null, 2) }],
|
|
isError: false,
|
|
};
|
|
} catch (error) {
|
|
throw error;
|
|
} finally {
|
|
client
|
|
.query("ROLLBACK")
|
|
.catch((error) =>
|
|
console.warn("Could not roll back transaction:", error),
|
|
);
|
|
|
|
client.release();
|
|
}
|
|
}
|
|
throw new Error(`Unknown tool: ${request.params.name}`);
|
|
});
|
|
|
|
async function runServer() {
|
|
const transport = new StdioServerTransport();
|
|
await server.connect(transport);
|
|
}
|
|
|
|
runServer().catch(console.error);
|