@manfred-kunze-dev/backbone-mcp-server 2.7.0-dev.4 → 2.8.0-dev.1

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.
@@ -46,10 +46,6 @@ export function register(server, client) {
46
46
  .array(z.string())
47
47
  .optional()
48
48
  .describe("Output formats, e.g. ['markdown', 'text', 'html', 'json']"),
49
- pageRange: z
50
- .string()
51
- .optional()
52
- .describe("Page range to convert, e.g. '1-5'"),
53
49
  pipeline: z
54
50
  .string()
55
51
  .optional()
@@ -59,7 +55,7 @@ export function register(server, client) {
59
55
  .optional()
60
56
  .default(false)
61
57
  .describe("If true, submit as async task and return task ID for polling"),
62
- }, async ({ sources, outputFormats, pageRange, pipeline, async: isAsync }) => {
58
+ }, async ({ sources, outputFormats, pipeline, async: isAsync }) => {
63
59
  try {
64
60
  const apiSources = [];
65
61
  for (const src of sources) {
@@ -87,7 +83,6 @@ export function register(server, client) {
87
83
  sources: apiSources,
88
84
  options: {
89
85
  ...(outputFormats ? { toFormats: outputFormats.map(mapOutputFormat) } : {}),
90
- ...(pageRange ? { pageRange } : {}),
91
86
  ...(pipeline ? { pipeline } : {}),
92
87
  },
93
88
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manfred-kunze-dev/backbone-mcp-server",
3
- "version": "2.7.0-dev.4",
3
+ "version": "2.8.0-dev.1",
4
4
  "description": "MCP server for the Backbone AI platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",