temba-mcp 0.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 (4) hide show
  1. package/README.md +3 -0
  2. package/cli.js +18 -0
  3. package/mcp.js +1 -0
  4. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Temba Docs MCP
2
+
3
+ You can ensure your AI tools have current Temba knowledge through the Temba Docs MCP (Model Context Protocol) server. This provides real-time access to the latest documentation, helping AI tools avoid outdated recommendations and ensuring they understand current best practices.
package/cli.js ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { go } from './mcp.js'
4
+
5
+ const [, , command, ...args] = process.argv
6
+
7
+ const ensure = (condition = false, message) => {
8
+ if (!condition) {
9
+ console.error(message)
10
+ process.exit(1)
11
+ }
12
+ }
13
+
14
+ console.log('\n✨ Temba Docs MCP')
15
+
16
+ go()
17
+
18
+ console.log('')
package/mcp.js ADDED
@@ -0,0 +1 @@
1
+ export const go = () => console.log('MCP is not implemented yet. Stay tuned!')
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "temba-mcp",
3
+ "version": "0.0.1",
4
+ "description": "MCP for Temba documentation",
5
+ "author": "Bouwe (https://bouwe.io)",
6
+ "scripts": {
7
+ "update": "npx -y jelmerro/nus"
8
+ },
9
+ "bin": {
10
+ "temba-mcp": "./cli.js"
11
+ },
12
+ "type": "module",
13
+ "files": [
14
+ "cli.js",
15
+ "mcp.js"
16
+ ]
17
+ }