telique-mcp 1.0.16 → 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/README.md +66 -0
- package/dist/lib.d.ts +12 -0
- package/dist/lib.js +15 -0
- package/package.json +11 -1
package/README.md
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Telique MCP
|
|
2
|
+
|
|
3
|
+
Telecom data tools for AI assistants. Query LRN, CNAM, DNO, LERG routing tables, toll-free routing, and more — directly from Claude, ChatGPT, Copilot, Cursor, or Codex.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g telique-mcp
|
|
9
|
+
telique-mcp setup
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
The setup wizard detects your installed AI clients and registers automatically.
|
|
13
|
+
|
|
14
|
+
## What You Get
|
|
15
|
+
|
|
16
|
+
| Tool | What it does |
|
|
17
|
+
|------|-------------|
|
|
18
|
+
| **lookup_tn** | Full profile of any phone number (LRN, CNAM, DNO, LERG — all in one call) |
|
|
19
|
+
| **lrn_lookup** | Local Routing Number and carrier (SPID) for a phone number |
|
|
20
|
+
| **cnam_lookup** | Caller ID name for a phone number |
|
|
21
|
+
| **dno_check** | Check if a number is on the Do Not Originate list (spoofing indicator) |
|
|
22
|
+
| **lerg_query** | Query 27 LERG telecom routing tables (carriers, switches, rate centers, LATAs) |
|
|
23
|
+
| **lerg_tandem** | Tandem switch routing for an NPA-NXX |
|
|
24
|
+
| **lerg_complex_query** | Multi-table JOIN queries across LERG tables |
|
|
25
|
+
| **lerg_table_info** | List tables or get schema for any of 27 LERG tables |
|
|
26
|
+
| **routelink_lookup** | Carrier (CIC) or Responsible Org (ROR) for a toll-free number |
|
|
27
|
+
| **routelink_ror_query** | List toll-free numbers or CPRs managed by a Responsible Org |
|
|
28
|
+
| **routelink_cpr** | Full call routing decision tree for a toll-free number |
|
|
29
|
+
| **graphql_query** | GraphQL queries against LSMS (live porting data) or LERG (routing reference) |
|
|
30
|
+
| **lrn_relationship_query** | Find phone numbers by LRN, SPIDs by phone number, etc. |
|
|
31
|
+
|
|
32
|
+
## Example Queries
|
|
33
|
+
|
|
34
|
+
Once installed, just ask your AI assistant:
|
|
35
|
+
|
|
36
|
+
- *"Look up the caller ID for 303-629-8301"*
|
|
37
|
+
- *"What carrier owns NPA-NXX 720-708?"*
|
|
38
|
+
- *"Is 877-382-4357 on the Do Not Originate list?"*
|
|
39
|
+
- *"Show me the tandem routing for 303-629"*
|
|
40
|
+
- *"Who is the RespOrg for 800-221-1212?"*
|
|
41
|
+
- *"Give me a full profile on 303-629-8301"*
|
|
42
|
+
|
|
43
|
+
## API Key
|
|
44
|
+
|
|
45
|
+
Works without an API key at 10 operations per minute. For unlimited access, get a key at [telique.ringer.tel](https://telique.ringer.tel).
|
|
46
|
+
|
|
47
|
+
Enter your key during setup or update it later by running `telique-mcp setup` again.
|
|
48
|
+
|
|
49
|
+
## Supported Clients
|
|
50
|
+
|
|
51
|
+
The setup wizard auto-detects and registers with:
|
|
52
|
+
|
|
53
|
+
- Claude Code
|
|
54
|
+
- Claude Desktop
|
|
55
|
+
- Cursor
|
|
56
|
+
- GitHub Copilot (VS Code)
|
|
57
|
+
- Codex CLI
|
|
58
|
+
- ChatGPT Desktop (manual setup)
|
|
59
|
+
|
|
60
|
+
See [INSTALL.md](INSTALL.md) for manual configuration and platform-specific paths.
|
|
61
|
+
|
|
62
|
+
## Links
|
|
63
|
+
|
|
64
|
+
- [Detailed install guide](INSTALL.md)
|
|
65
|
+
- [GitHub](https://github.com/Ringer/telique-mcp)
|
|
66
|
+
- [npm](https://www.npmjs.com/package/telique-mcp)
|
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
|
},
|