@timmeck/marketing-brain 0.4.0 → 0.4.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.
- package/README.md +1 -1
- package/package.json +15 -4
- package/smithery.yaml +10 -0
package/README.md
CHANGED
|
@@ -356,7 +356,7 @@ Marketing Brain is part of the **Brain Ecosystem** — a family of standalone MC
|
|
|
356
356
|
| [Brain](https://github.com/timmeck/brain) | Error memory & code intelligence | 7777 / 7778 |
|
|
357
357
|
| [Trading Brain](https://github.com/timmeck/trading-brain) | Adaptive trading intelligence | 7779 / 7780 |
|
|
358
358
|
| **Marketing Brain** | Content strategy & engagement | **7781** / 7782 / 7783 |
|
|
359
|
-
| [Brain Core](https://github.com/timmeck/brain-core) v1.
|
|
359
|
+
| [Brain Core](https://github.com/timmeck/brain-core) v1.5.0 | Shared infrastructure (IPC, MCP, REST, CLI, math, synapses) | — |
|
|
360
360
|
| [Brain Hub](https://timmeck.github.io/brain-hub/) | Ecosystem landing page | — |
|
|
361
361
|
|
|
362
362
|
Each brain is **fully standalone** — [Brain Core](https://www.npmjs.com/package/@timmeck/brain-core) provides shared infrastructure (IPC, MCP, REST API, CLI, math, synapse algorithms) used by all brains, eliminating ~2,800 lines of duplicated code.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timmeck/marketing-brain",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Self-learning marketing intelligence system with Hebbian synapse network",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,16 +16,27 @@
|
|
|
16
16
|
"test:coverage": "vitest --coverage"
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
|
-
"marketing-intelligence",
|
|
20
|
-
"content-strategy",
|
|
21
19
|
"mcp",
|
|
20
|
+
"mcp-server",
|
|
21
|
+
"model-context-protocol",
|
|
22
|
+
"claude",
|
|
22
23
|
"claude-code",
|
|
24
|
+
"cursor",
|
|
25
|
+
"windsurf",
|
|
26
|
+
"cline",
|
|
27
|
+
"ai-tools",
|
|
28
|
+
"marketing-intelligence",
|
|
29
|
+
"content-strategy",
|
|
30
|
+
"developer-tools",
|
|
23
31
|
"hebbian-learning",
|
|
24
|
-
"synapse-network",
|
|
25
32
|
"engagement-tracking"
|
|
26
33
|
],
|
|
27
34
|
"author": "Tim Mecklenburg",
|
|
28
35
|
"license": "MIT",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://github.com/timmeck/marketing-brain"
|
|
39
|
+
},
|
|
29
40
|
"dependencies": {
|
|
30
41
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
31
42
|
"@timmeck/brain-core": "^1.1.0",
|