Telique MCP
Enables querying of telecom data such as LRN, CNAM, DNO, LERG routing tables, and toll-free routing directly from GitHub Copilot.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Telique MCPWhat carrier owns NPA-NXX 720-708?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Telique MCP
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.
Install
Pick one install surface.
Recommended — Hosted connector
OAuth-authenticated. Works on claude.ai, Claude Desktop, Claude Code, and Claude mobile. No local Node runtime.
URL:
https://mcp.telique.ringer.telAdd it as a custom MCP connector in your Claude client's settings.
npm stdio — advanced / offline
For CI, local development, or clients that don't support remote MCP. Stores a long-lived tlq_… token at ~/.telique/config.json.
npm install -g telique-mcp
telique-mcp setupThe setup wizard detects installed AI clients and registers automatically.
⚠️ Install only one surface. Running both exposes the same tools under overlapping namespaces and causes confusing shadowing of tool results.
Related MCP server: AI Directory MCP Server
What You Get
Tool | What it does |
lookup_tn | Full profile of any phone number (LRN, CNAM, DNO, LERG — all in one call) |
lrn_lookup | Local Routing Number and carrier (SPID) for a phone number |
cnam_lookup | Caller ID name for a phone number |
dno_check | Check if a number is on the Do Not Originate list (spoofing indicator) |
lerg_query | Query 27 LERG telecom routing tables (carriers, switches, rate centers, LATAs) |
lerg_tandem | Tandem switch routing for an NPA-NXX |
lerg_complex_query | Multi-table JOIN queries across LERG tables |
lerg_table_info | List tables or get schema for any of 27 LERG tables |
routelink_lookup | Carrier (CIC) or Responsible Org (ROR) for a toll-free number |
routelink_ror_query | List toll-free numbers or CPRs managed by a Responsible Org |
routelink_cpr | Full call routing decision tree for a toll-free number |
graphql_query | GraphQL queries against LSMS (live porting data) or LERG (routing reference) |
lrn_relationship_query | Find phone numbers by LRN, SPIDs by phone number, etc. |
Example Queries
Once installed, just ask your AI assistant:
"Look up the caller ID for 303-629-8301"
"What carrier owns NPA-NXX 720-708?"
"Is 877-382-4357 on the Do Not Originate list?"
"Show me the tandem routing for 303-629"
"Who is the RespOrg for 800-221-1212?"
"Give me a full profile on 303-629-8301"
API Key
Works without an API key at 10 operations per minute. For unlimited access, get a key at telique.ringer.tel.
Enter your key during setup or update it later by running telique-mcp setup again.
Supported Clients
The setup wizard auto-detects and registers with:
Claude Code
Claude Desktop
Cursor
GitHub Copilot (VS Code)
Codex CLI
Codex Desktop (macOS — also configured automatically when only the .app is installed; CLI and Desktop share
~/.codex/config.toml)ChatGPT Desktop (manual setup)
See INSTALL.md for manual configuration and platform-specific paths.
Links
Available Tools
8 toolscnam_lookupARead-only
Look up the Caller Name (CNAM) for a phone number via TransUnion LIDB. Returns the calling_name (up to 15 characters), calling_name_status (available/unavailable), and presentation_indicator (allowed/restricted). Results are cached server-side for 24 hours.
| Name | Required | Description | Default |
|---|---|---|---|
| phone_number | Yes | 10-15 digit phone number to look up |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds valuable behavioral context: 'Results are cached server-side for 24 hours.' This goes beyond annotations and helps the agent understand caching behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences: first covers purpose and return values, second covers caching. No redundant information, front-loaded, and every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description fully explains return fields and their possible values. Missing error handling details, but for a simple lookup with status field, this is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the single parameter phone_number, which already includes pattern and description. The description does not add additional semantics beyond what the schema provides, so baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Look up the Caller Name (CNAM) for a phone number via TransUnion LIDB.' It specifies a specific verb ('look up'), resource ('CNAM'), and data source. The returned fields are listed, making it distinct from siblings like lrn_lookup or telique_status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool vs. alternatives like lrn_lookup or telique_status. The description implies usage for CNAM queries but does not provide context for when it's appropriate or when to avoid it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
dno_checkARead-only
Check if a phone number is on the Do Not Originate (DNO) list. DNO numbers should never appear as a caller ID because they belong to entities that only receive calls (e.g., IRS, major banks). A match indicates potential caller ID spoofing. Supports prefix matching (3, 6, 7, or 10 digit patterns).
| Name | Required | Description | Default |
|---|---|---|---|
| phone_number | Yes | 10-digit US phone number to check |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds valuable behavioral context: DNO list semantics, prefix matching details (3/6/7/10 digits), and what a match signifies. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no extraneous information. The description is front-loaded with the core purpose and efficiently explains the DNO concept, use case, and matching behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema, clear annotations), the description covers the essential context: what DNO is, why it matters, and matching behavior. It does not specify return format, but that is not critical for a boolean-like check.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a single parameter and clear pattern. The description adds prefix matching information, but this contradicts the schema's exact 10-digit requirement. This inconsistency reduces the helpfulness for an AI agent.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool checks a phone number against the DNO list, explains what DNO is and why it's used (prevent caller ID spoofing), and distinguishes it from sibling tools like cnam_lookup or lrn_lookup by specifying the unique context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly guides when to use (when verifying caller ID authenticity) and explains the implication of a match (potential spoofing). It lacks explicit alternatives or when-not conditions, but the context is clear enough for an AI agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lerg_table_infoARead-only
List all 27 LERG tables or get metadata/schema for a specific table. LERG is static telecom reference data. Key tables: lerg_1 (OCN/carrier directory), lerg_6 (NPA-NXX block assignments with switch, LATA, rate center), lerg_7 (switch details), lerg_7_sha (switch homing arrangements/tandems), lerg_12 (LRN registry).
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | No | Specific table name (e.g. lerg_1, lerg_6, lerg_7_sha). Omit to list all tables. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds that the tool lists static reference data or retrieves metadata, which is consistent but does not provide further behavioral context beyond what annotations convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no wasted words. It front-loads the main action and then lists key tables for context. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple metadata tool with one optional parameter and annotations covering safety, the description is adequate. It describes the dual function and hints at important tables. Lacks output format details but no output schema exists to compensate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the parameter description in the schema already includes the key information ('Omit to list all tables'). The tool description adds nothing new about the parameter beyond what the schema provides, so a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists all 27 LERG tables or gets metadata/schema for a specific table, using precise verbs and naming the resource. It distinguishes itself from sibling query tools by focusing on table metadata.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies two usage modes (list all or get schema) but does not explicitly guide when to use this tool vs siblings like lerg_query for data queries. Usage is implied but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lerg_tandemARead-only
Look up tandem routing information. Query by NPA+NXX, switch CLLI, tandem CLLI, or carrier name pattern. Returns tandem switch, OCN, LATA, and routing path via SQL JOINs across lerg_6, lerg_7_sha, and lerg_1.
| Name | Required | Description | Default |
|---|---|---|---|
| npa | No | 3-digit area code (NPA) — use with nxx | |
| nxx | No | 3-digit exchange code (NXX) — use with npa | |
| name | No | Carrier name pattern with % wildcard (e.g. %VERIZON%). Case-insensitive. | |
| limit | No | Max results (default 100) | |
| offset | No | Pagination offset (default 0) | |
| tandem | No | Tandem CLLI code — reverse lookup to find what subtends it | |
| switch_clli | No | Switch CLLI code (e.g. DNVRCOMADS0) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds that data comes from SQL JOINs across multiple tables, but does not disclose performance characteristics, pagination behavior, or timeout limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, each carrying essential information: first states purpose and query options, second states return fields and data sources. No redundant words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 7 parameters and no output schema, the description provides sufficient context on input combinations and output fields. Lacks explanation of limit/offset pagination, but that is already in schema defaults.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed parameter descriptions. The description adds value by grouping parameters into query modes (NPA+NXX, switch CLLI, etc.) and stating return fields, exceeding baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Look up tandem routing information' and lists specific query methods and return fields (tandem switch, OCN, LATA, routing path). This distinguishes it from sibling tools like lerg_query or lerg_complex_query.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description explains when to use: query by NPA+NXX, switch CLLI, tandem CLLI, or carrier name pattern. However, it does not explicitly exclude use cases or suggest alternatives among sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lrn_relationship_queryARead-only
Query relationships in the LSMS database. Find phone numbers by LRN, SPIDs by LRN or phone number, or LRNs by SPID or phone number. Queries live NPAC porting data (not static LERG reference data).
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | The LRN, SPID, or phone number to query by (depends on query_type) | |
| query_type | Yes | Type of relationship query |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, indicating safe reads. The description adds behavioral context by specifying it queries 'live NPAC porting data' rather than static LERG, which informs agents about data freshness and source. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the main purpose, and each sentence adds value. No redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description does not specify return format, but it clarifies data source (live NPAC) and enumerates query types. For a simple query tool with 2 parameters, this is sufficient to set agent expectations, though additional details on output structure would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for both parameters (query_type and value). The description lists example query types, which the schema already enumerates. It adds minimal extra meaning beyond the schema, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool queries relationships in the LSMS database, lists specific query types (phones_by_lrn, spid_by_lrn, etc.), and distinguishes from static LERG data by saying 'Queries live NPAC porting data (not static LERG reference data).' This effectively differentiates it from sibling tools like lerg_query.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly guides usage by listing query types and noting the data source (live NPAC vs static LERG). However, it does not explicitly state when to use this tool versus alternatives like lrn_lookup, nor does it provide when-not-to-use scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
routelink_lookupARead-only
Look up toll-free number routing. Resolves a CRN (toll-free number) to its carrier (CIC), Responsible Organization (ROR), or both. CIC lookup interprets the CPR decision tree using the caller's ANI and LATA to determine which carrier handles the call.
| Name | Required | Description | Default |
|---|---|---|---|
| ani | No | 10-digit calling party number (required for cic and cicror lookups) | |
| crn | Yes | 10-digit toll-free number (CRN), e.g. 8005551234 | |
| lata | No | 3-digit LATA code (required for cic and cicror lookups) | |
| lookup_type | Yes | Type of lookup: 'cic' = carrier ID, 'ror' = responsible org, 'cicror' = both |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description aligns with annotations (readOnlyHint=true) and adds behavioral detail about interpreting the CPR decision tree. No contradictions; it transparently describes the lookup process.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences that front-load the core purpose and cover key details without waste. Each sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description explains what is resolved (carrier, ROR) and required parameters, but does not cover error cases or result format. Adequate for a lookup tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, baseline 3. The description adds meaning by explaining the role of ANI and LATA in the decision tree and clarifying the lookup_type values, going beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool resolves a CRN to its carrier (CIC) and/or Responsible Organization (ROR), with specifics about the CIC lookup using ANI and LATA. This distinguishes it from sibling tools like routelink_cpr and routelink_ror_query.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains that ANI and LATA are required for cic lookups, providing context on when to provide those parameters. However, it does not explicitly mention when not to use this tool or recommend alternatives among the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
routelink_ror_queryARead-only
List toll-free numbers (TFNs) or Call Processing Records (CPRs) associated with a Responsible Organization (ROR). Use this to explore which toll-free numbers a specific organization manages.
| Name | Required | Description | Default |
|---|---|---|---|
| ror | Yes | 1-5 character alphanumeric ROR code (e.g. ATX01, CTJLE) | |
| limit | No | Max results to return (default 100, max 10000) | |
| offset | No | Pagination offset (default 0) | |
| resource_type | Yes | Whether to list TFNs or CPRs for this ROR |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the description adds limited behavioral info. It correctly implies a read operation without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences front-load the action and usage, with no unnecessary words. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple query tool with four parameters, the description covers purpose and usage. However, it omits mention of pagination behavior (limit/offset) and return format, which are implied but not explicit.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed parameter descriptions. The description adds general context but does not provide additional semantics beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists toll-free numbers or Call Processing Records associated with a Responsible Organization, using specific verbs and resources. It distinguishes from sibling tools by focusing on ROR associations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context ('Use this to explore which toll-free numbers a specific organization manages') but does not explicitly mention when not to use this tool or suggest alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
telique_statusARead-only
Returns the Telique MCP server version, authentication mode, and API connectivity status. Use this when asked about the server version or connection status.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds value by specifying the exact information returned (version, auth mode, connectivity), which is not in annotations. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, efficient and front-loaded. Every word serves a purpose; there is no redundant or missing information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite lacking an output schema, the description explicitly lists the three fields returned: version, authentication mode, and connectivity status. For a simple status tool, this is complete and actionable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and schema description coverage is 100% (vacuously). With no parameters, the description does not need to explain parameter semantics. Baseline score of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns server version, authentication mode, and API connectivity status. It uses a specific verb ('Returns') and identifies the resource ('Telique MCP server'). The tool is distinct from its siblings (all lookup/query tools for telecom data), so no confusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly advises use when asked about server version or connection status. Although it does not specify when not to use, no sibling tool covers status functionality, so the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
9 tool updates
v1.0.32- Added
cnam_lookup - Added
dno_check - Removed
graphql_query - Removed
lerg_complex_query - Added
lerg_table_info - Removed
lookup_tn - Added
lrn_relationship_query - Added
routelink_ror_query - Added
telique_status
9 tool updates
v1.0.32- Removed
cnam_lookup - Removed
dno_check - Removed
lerg_query - Removed
lerg_table_info - Removed
lrn_lookup - Removed
lrn_relationship_query - Removed
routelink_cpr - Removed
routelink_ror_query - Removed
telique_status
14 tool updates
v1.0.30- First observed
cnam_lookup - First observed
dno_check - First observed
graphql_query - First observed
lerg_complex_query - First observed
lerg_query - First observed
lerg_table_info - First observed
lerg_tandem - First observed
lookup_tn - First observed
lrn_lookup - First observed
lrn_relationship_query - First observed
routelink_cpr - First observed
routelink_lookup - First observed
routelink_ror_query - First observed
telique_status
TDQS
Each tool targets a unique telecom query function with no overlap: caller name, do-not-originate, LERG metadata, tandem routing, LRN porting, toll-free routing, and server status. Agent can reliably distinguish them.
All tool names follow a predictable verb_noun pattern in snake_case, with clear prefixes per domain (cnam, dno, lerg, lrn, routelink, telique). Naming is uniform and easy to parse.
With 8 tools, the server covers a focused but complete telecom lookup domain without excessive or minimal tools. Each tool earns its place.
The tool surface covers all essential telecom query types: CNAM, DNO, LERG reference, LRN porting, toll-free routing, and server metadata. No obvious dead ends or missing operations for its stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Give your AI a real phone: place calls, send SMS, fetch recordings and transcripts. Local or hosted.
1Give your AI agent a phone: place calls, navigate IVRs, wait on hold, get structured answers.
Phone carrier lookup, append, verification, DNC, and fraud data services.
Read-only phone intelligence for AI voice agents — line type, risk, DNC, signed receipts.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to manage phone numbers, send/receive SMS, and place voice calls through natural language, connecting to the phone network via the AgentPhone API.7,395121MIT
- FlicenseAqualityFmaintenanceEnables AI assistants to query the Voxie AI Phone Number Directory, list AI services, and obtain webchat URLs to interact with Voxie AI personas.43-
- AlicenseAqualityBmaintenanceProvides North American (NANP) area code and phone number intelligence for AI agents, including area code lookup, phone validation, carrier info, city/state coverage, local time, and scam context.858MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to send SMS messages, verify phone numbers via OTP, assess fraud risk, and access TeleSign API documentation through natural language.8377Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ringer/telique-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server