brief-mcp 1.0.0 → 1.1.0

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -8,9 +8,9 @@ import { hideBin } from 'yargs/helpers';
8
8
  // ============================================================================
9
9
  // Configuration - Direct Supabase Edge Functions
10
10
  // ============================================================================
11
- const SUPABASE_URL = 'https://pubrvnwqeimnoxgdeage.supabase.co';
11
+ const SUPABASE_URL = 'https://mawcfpoktzbefesduneu.supabase.co';
12
12
  const EDGE_FUNCTIONS_URL = `${SUPABASE_URL}/functions/v1`;
13
- const SUPABASE_ANON_KEY = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InB1YnJ2bndxZWltbm94Z2RlYWdlIiwicm9sZSI6ImFub24iLCJpYXQiOjE3Njg2MjU3MTQsImV4cCI6MjA4NDIwMTcxNH0.LdMqYS0quwLdSXkTKEJyYCghSRzrYNNSCkv-tUtGUy4';
13
+ const SUPABASE_ANON_KEY = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im1hd2NmcG9rdHpiZWZlc2R1bmV1Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3Njg4MTE4NDgsImV4cCI6MjA4NDM4Nzg0OH0.Z5V2P3djpdTnETpkaZVEindkzCDqStiz_mW7FxY9vXs';
14
14
  function parseArguments() {
15
15
  const argv = yargs(hideBin(process.argv))
16
16
  .option('access-token', {
@@ -83,7 +83,7 @@ async function startMCPServer() {
83
83
  tools: [
84
84
  {
85
85
  name: 'search-context',
86
- description: 'Search your organization\'s knowledge base and get AI-powered answers using GLM-4.7.',
86
+ description: 'Search your organization\'s knowledge base and get AI-powered answers. Model is configurable per organization (Mistral, GLM, or OpenAI).',
87
87
  inputSchema: {
88
88
  type: 'object',
89
89
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brief-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Brief MCP - Context-first development with RAG-powered knowledge base",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -13,7 +13,7 @@
13
13
  "dev": "ts-node --esm src/index.ts",
14
14
  "prepublishOnly": "npm run build"
15
15
  },
16
- "keywords": ["mcp", "model-context-protocol", "rag", "ai", "claude", "cursor", "glm", "featherless", "knowledge-base"],
16
+ "keywords": ["mcp", "model-context-protocol", "rag", "ai", "claude", "cursor", "mistral", "glm", "openai", "knowledge-base"],
17
17
  "author": "Brief Team - Paris Innov Hackathon",
18
18
  "license": "MIT",
19
19
  "repository": {