Skip to main content
Glama
Ringer
by Ringer

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.

OAuth-authenticated. Works on claude.ai, Claude Desktop, Claude Code, and Claude mobile. No local Node runtime.

  • URL: https://mcp.telique.ringer.tel

  • Add 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 setup

The 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.

Available Tools

8 tools
cnam_lookupA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
phone_numberYes10-15 digit phone number to look up

TDQS

A3.8/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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_checkA
Read-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).

ParametersJSON Schema
NameRequiredDescriptionDefault
phone_numberYes10-digit US phone number to check

TDQS

A4.1/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_infoA
Read-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).

ParametersJSON Schema
NameRequiredDescriptionDefault
table_nameNoSpecific table name (e.g. lerg_1, lerg_6, lerg_7_sha). Omit to list all tables.

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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_tandemA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
npaNo3-digit area code (NPA) — use with nxx
nxxNo3-digit exchange code (NXX) — use with npa
nameNoCarrier name pattern with % wildcard (e.g. %VERIZON%). Case-insensitive.
limitNoMax results (default 100)
offsetNoPagination offset (default 0)
tandemNoTandem CLLI code — reverse lookup to find what subtends it
switch_clliNoSwitch CLLI code (e.g. DNVRCOMADS0)

TDQS

A4.2/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_queryA
Read-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).

ParametersJSON Schema
NameRequiredDescriptionDefault
valueYesThe LRN, SPID, or phone number to query by (depends on query_type)
query_typeYesType of relationship query

TDQS

A4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

telique_statusA
Read-only

Returns the Telique MCP server version, authentication mode, and API connectivity status. Use this when asked about the server version or connection status.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 9 tool updatesv1.0.32
    • Addedcnam_lookup
    • Addeddno_check
    • Removedgraphql_query
    • Removedlerg_complex_query
    • Addedlerg_table_info
    • Removedlookup_tn
    • Addedlrn_relationship_query
    • Addedroutelink_ror_query
    • Addedtelique_status
  2. 9 tool updatesv1.0.32
    • Removedcnam_lookup
    • Removeddno_check
    • Removedlerg_query
    • Removedlerg_table_info
    • Removedlrn_lookup
    • Removedlrn_relationship_query
    • Removedroutelink_cpr
    • Removedroutelink_ror_query
    • Removedtelique_status
  3. 14 tool updatesv1.0.30
    • First observedcnam_lookup
    • First observeddno_check
    • First observedgraphql_query
    • First observedlerg_complex_query
    • First observedlerg_query
    • First observedlerg_table_info
    • First observedlerg_tandem
    • First observedlookup_tn
    • First observedlrn_lookup
    • First observedlrn_relationship_query
    • First observedroutelink_cpr
    • First observedroutelink_lookup
    • First observedroutelink_ror_query
    • First observedtelique_status

TDQS

A4.3/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

With 8 tools, the server covers a focused but complete telecom lookup domain without excessive or minimal tools. Each tool earns its place.

Completeness5/5

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

ActivitySlowing
ResponsivenessSyncing

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

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Provides 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.
    8
    58
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to send SMS messages, verify phone numbers via OTP, assess fraud risk, and access TeleSign API documentation through natural language.
    8
    377
    Apache 2.0

Latest Blog Posts

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