@linkegringo/mcp 2.0.0 → 2.0.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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.js +3 -2
  3. package/package.json +10 -10
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Muriel Gasparini
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/index.js CHANGED
@@ -1863,8 +1863,9 @@ function formatJobResponse(job) {
1863
1863
  "id": "q1",
1864
1864
  "category": "scale",
1865
1865
  "question": "Texto claro da pergunta para investigar o escopo e impacto...",
1866
- "rationale": "Por que esta pergunta \xE9 importante para o recrutador gringo...",
1867
- "targetSignal": "M\xE9tricas de escala, throughput ou lat\xEAncia que queremos capturar"
1866
+ "reason": "Crit\xE9rio dos recrutadores dos EUA: por que esta pergunta \xE9 importante...",
1867
+ "answerType": "long-text",
1868
+ "placeholderExample": "Ex: Processamos 7M de requisi\xE7\xF5es por m\xEAs com lat\xEAncia P99 < 200ms..."
1868
1869
  }
1869
1870
  ]
1870
1871
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linkegringo/mcp",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Servidor MCP oficial do LinkeGringo para auditoria e otimização de perfis para o mercado internacional",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,21 +16,21 @@
16
16
  "files": [
17
17
  "dist"
18
18
  ],
19
- "scripts": {
20
- "build": "tsup",
21
- "dev": "tsup --watch",
22
- "typecheck": "tsc --noEmit",
23
- "test": "vitest run"
24
- },
25
19
  "dependencies": {
26
20
  "@modelcontextprotocol/sdk": "^1.6.0",
27
21
  "zod": "^3.24.1"
28
22
  },
29
23
  "devDependencies": {
30
- "@linkegringo/core": "workspace:*",
31
24
  "@types/node": "^22.10.2",
32
25
  "tsup": "^8.3.6",
33
26
  "typescript": "^5.7.2",
34
- "vitest": "^2.1.8"
27
+ "vitest": "^2.1.8",
28
+ "@linkegringo/core": "1.0.0"
29
+ },
30
+ "scripts": {
31
+ "build": "tsup",
32
+ "dev": "tsup --watch",
33
+ "typecheck": "tsc --noEmit",
34
+ "test": "vitest run"
35
35
  }
36
- }
36
+ }