contextforge-mcp 0.1.11 → 0.1.12

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/index.js CHANGED
@@ -706,14 +706,14 @@ async function main() {
706
706
  console.error('');
707
707
  console.error(`${colors.bgBlue}${colors.white}${colors.bright} ContextForge MCP ${colors.reset}`);
708
708
  console.error(`${colors.dim}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
709
- console.error(`${colors.cyan}Version:${colors.reset} 0.1.11`);
709
+ console.error(`${colors.cyan}Version:${colors.reset} 0.1.12`);
710
710
  console.error(`${colors.cyan}API URL:${colors.reset} ${config.apiUrl}`);
711
711
  console.error(`${colors.cyan}Space:${colors.reset} ${config.defaultSpace || '(not set)'}`);
712
712
  console.error(`${colors.dim}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${colors.reset}`);
713
713
  console.error('');
714
714
  const server = new Server({
715
715
  name: 'contextforge-mcp',
716
- version: '0.1.11',
716
+ version: '0.1.12',
717
717
  }, {
718
718
  capabilities: {
719
719
  tools: {},
package/dist/types.js CHANGED
@@ -21,7 +21,7 @@ export const QueryInputSchema = z.object({
21
21
  query: z.string().min(1, 'Query is required'),
22
22
  space_id: z.string().uuid().optional(),
23
23
  limit: z.number().int().min(1).max(50).default(10),
24
- min_score: z.number().min(0).max(1).default(0.5),
24
+ min_score: z.number().min(0).max(1).default(0.3),
25
25
  filters: z.object({
26
26
  tags: z.array(z.string()).optional(),
27
27
  source_types: z.array(z.enum([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contextforge-mcp",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Intelligent contextual memory MCP server for developers",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",