telique-mcp 1.0.17 → 1.0.18
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/dist/lib.d.ts +12 -0
- package/dist/lib.js +15 -0
- package/package.json +11 -1
package/dist/lib.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { TeliqueClient } from "./client.js";
|
|
2
|
+
export type { Config } from "./config.js";
|
|
3
|
+
export { registerRoutelinkTools } from "./tools/routelink.js";
|
|
4
|
+
export { registerLrnTools } from "./tools/lrn.js";
|
|
5
|
+
export { registerCnamTools } from "./tools/cnam.js";
|
|
6
|
+
export { registerLergTools } from "./tools/lerg.js";
|
|
7
|
+
export { registerGraphqlTools } from "./tools/graphql.js";
|
|
8
|
+
export { registerCompositeTools } from "./tools/composite.js";
|
|
9
|
+
export { registerKnowledge, TELIQUE_KNOWLEDGE } from "./knowledge.js";
|
|
10
|
+
export { ICONS, ICON_LIGHT_DATA_URI, ICON_DARK_DATA_URI } from "./icons.js";
|
|
11
|
+
export { VERSION } from "./version.js";
|
|
12
|
+
export type { ToolRegistrar } from "./types.js";
|
package/dist/lib.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Library exports for use by the remote MCP server and other consumers
|
|
2
|
+
// Client
|
|
3
|
+
export { TeliqueClient } from "./client.js";
|
|
4
|
+
// Tool registrars
|
|
5
|
+
export { registerRoutelinkTools } from "./tools/routelink.js";
|
|
6
|
+
export { registerLrnTools } from "./tools/lrn.js";
|
|
7
|
+
export { registerCnamTools } from "./tools/cnam.js";
|
|
8
|
+
export { registerLergTools } from "./tools/lerg.js";
|
|
9
|
+
export { registerGraphqlTools } from "./tools/graphql.js";
|
|
10
|
+
export { registerCompositeTools } from "./tools/composite.js";
|
|
11
|
+
// Knowledge / prompts
|
|
12
|
+
export { registerKnowledge, TELIQUE_KNOWLEDGE } from "./knowledge.js";
|
|
13
|
+
// Metadata
|
|
14
|
+
export { ICONS, ICON_LIGHT_DATA_URI, ICON_DARK_DATA_URI } from "./icons.js";
|
|
15
|
+
export { VERSION } from "./version.js";
|
package/package.json
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "telique-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"description": "MCP server for Telique telecom APIs (RouteLink, LRN, CNAM, LERG)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts"
|
|
11
|
+
},
|
|
12
|
+
"./lib": {
|
|
13
|
+
"import": "./dist/lib.js",
|
|
14
|
+
"types": "./dist/lib.d.ts"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
7
17
|
"bin": {
|
|
8
18
|
"telique-mcp": "dist/index.js"
|
|
9
19
|
},
|