@gramatr/mcp 0.7.1 → 0.7.3
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 +5 -5
- package/package.json +27 -3
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @gramatr/mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Intelligence middleware for AI agents by [gramatr](https://gramatr.com).
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
Pre-classifies every request, injects relevant memory and behavioral context,
|
|
6
|
+
enforces data quality, and maintains session continuity across Claude, ChatGPT,
|
|
7
|
+
Codex, Cursor, Gemini, and any MCP-compatible client.
|
|
8
8
|
|
|
9
9
|
## Quick Install
|
|
10
10
|
|
|
@@ -132,4 +132,4 @@ Or via npx (slower, checks npm on every start):
|
|
|
132
132
|
|
|
133
133
|
## License
|
|
134
134
|
|
|
135
|
-
See [LICENSE](
|
|
135
|
+
See [LICENSE](LICENSE) in this package.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gramatr/mcp",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "grāmatr
|
|
3
|
+
"version": "0.7.3",
|
|
4
|
+
"description": "grāmatr — Intelligence middleware for AI agents. Pre-classifies every request, injects relevant memory and behavioral context, enforces data quality, and maintains session continuity across Claude, ChatGPT, Codex, Cursor, Gemini, and any MCP-compatible client.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -11,6 +11,29 @@
|
|
|
11
11
|
"url": "https://github.com/gramatr/mcp.git"
|
|
12
12
|
},
|
|
13
13
|
"homepage": "https://gramatr.com",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/gramatr/mcp/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"mcp",
|
|
19
|
+
"model-context-protocol",
|
|
20
|
+
"intelligence-layer",
|
|
21
|
+
"decision-routing",
|
|
22
|
+
"context-engineering",
|
|
23
|
+
"session-continuity",
|
|
24
|
+
"agent-memory",
|
|
25
|
+
"knowledge-graph",
|
|
26
|
+
"semantic-search",
|
|
27
|
+
"claude",
|
|
28
|
+
"chatgpt",
|
|
29
|
+
"codex",
|
|
30
|
+
"cursor",
|
|
31
|
+
"gemini",
|
|
32
|
+
"gramatr"
|
|
33
|
+
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=20.0.0"
|
|
36
|
+
},
|
|
14
37
|
"type": "module",
|
|
15
38
|
"bin": {
|
|
16
39
|
"gramatr-mcp": "dist/bin/gramatr-mcp.js"
|
|
@@ -21,7 +44,8 @@
|
|
|
21
44
|
"./bin": "./dist/bin/gramatr-mcp.js"
|
|
22
45
|
},
|
|
23
46
|
"files": [
|
|
24
|
-
"dist"
|
|
47
|
+
"dist",
|
|
48
|
+
"LICENSE"
|
|
25
49
|
],
|
|
26
50
|
"dependencies": {
|
|
27
51
|
"@modelcontextprotocol/sdk": "^1.12.0"
|