mcp-decibri 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.
- package/README.md +15 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# mcp-decibri
|
|
2
|
+
|
|
3
|
+
MCP (Model Context Protocol) server for voice input and output in AI agents.
|
|
4
|
+
|
|
5
|
+
**Status:** Placeholder. Active development underway. v0.1.0 coming soon.
|
|
6
|
+
|
|
7
|
+
## About
|
|
8
|
+
|
|
9
|
+
Part of the [Decibri](https://decibri.com) ecosystem. Built on the decibri audio library.
|
|
10
|
+
|
|
11
|
+
## Links
|
|
12
|
+
|
|
13
|
+
- Website: https://decibri.com
|
|
14
|
+
- Source: https://github.com/decibri/mcp-decibri (coming soon)
|
|
15
|
+
-
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp-decibri",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "MCP server for voice I/O in AI agents. Part of the Decibri ecosystem.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Placeholder release\" && exit 0"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"mcp",
|
|
11
|
+
"model-context-protocol",
|
|
12
|
+
"voice",
|
|
13
|
+
"audio",
|
|
14
|
+
"ai-agents",
|
|
15
|
+
"decibri"
|
|
16
|
+
],
|
|
17
|
+
"author": "Ross Armstrong <ross.armstrong@analyticsinmotion.com>",
|
|
18
|
+
"license": "Apache-2.0",
|
|
19
|
+
"homepage": "https://decibri.com",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/decibri/mcp-decibri.git"
|
|
23
|
+
}
|
|
24
|
+
}
|