preflight-mcp 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server.js +3 -2
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -100,7 +100,7 @@ export async function startServer() {
|
|
|
100
100
|
startHttpServer(cfg);
|
|
101
101
|
const server = new McpServer({
|
|
102
102
|
name: 'preflight-mcp',
|
|
103
|
-
version: '0.2.
|
|
103
|
+
version: '0.2.3',
|
|
104
104
|
description: 'Create evidence-based preflight bundles for repositories (docs + code) with SQLite FTS search.',
|
|
105
105
|
}, {
|
|
106
106
|
capabilities: {
|
|
@@ -289,10 +289,11 @@ export async function startServer() {
|
|
|
289
289
|
' └── norm/ # Normalized source code\n' +
|
|
290
290
|
'```\n\n' +
|
|
291
291
|
'**File Access Methods:**\n' +
|
|
292
|
+
'- README: `repos/{owner}/{repo}/norm/README.md` - use THIS tool\n' +
|
|
292
293
|
'- JSON files (FACTS.json, dependency-graph.json, trace.json, manifest.json): Use THIS tool\n' +
|
|
293
294
|
'- SQLite DBs (search.sqlite3): Use preflight_search_bundle\n' +
|
|
294
295
|
'- SQLite DBs (trace.sqlite3): Use preflight_trace_query/preflight_trace_upsert\n' +
|
|
295
|
-
'- Source code
|
|
296
|
+
'- Source code: `repos/{owner}/{repo}/norm/{path}` - use THIS tool',
|
|
296
297
|
inputSchema: {
|
|
297
298
|
bundleId: z.string().describe('Bundle ID to read.'),
|
|
298
299
|
file: z.string().optional().describe('Specific file to read (e.g., "deps/dependency-graph.json"). If omitted, returns all key files including dependency graph if exists.'),
|