@tigerdata/mcp-boilerplate 1.0.0 → 1.0.2
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/README.md +1 -1
- package/dist/cliEntrypoint.js +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ See [tiger-skills-mcp-server](https://github.com/tigerdata/tiger-skills-mcp-serv
|
|
|
12
12
|
|
|
13
13
|
### Skills
|
|
14
14
|
|
|
15
|
-
Add skills support to your MCP server by leveraging the skills submodule in `@tigerdata/mcp-boilerplate/skills`. See [
|
|
15
|
+
Add skills support to your MCP server by leveraging the skills submodule in `@tigerdata/mcp-boilerplate/skills`. See the [Skills README](./src/skills/README.md) for details.
|
|
16
16
|
|
|
17
17
|
## Eslint Plugin
|
|
18
18
|
|
package/dist/cliEntrypoint.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { join } from 'node:path';
|
|
2
|
-
|
|
1
|
+
import { dirname, join } from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'node:url';
|
|
3
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
4
|
+
export async function cliEntrypoint(stdioEntrypoint, httpEntrypoint, instrumentation = join(__dirname, './instrumentation.js')) {
|
|
3
5
|
// Parse command line arguments first
|
|
4
6
|
const args = process.argv.slice(2);
|
|
5
7
|
const scriptName = args[0] || 'stdio';
|