L2Tools — Lineage 2 Reference Data
Server Details
Read-only Interlude and High Five NPC, loot, Soul Crystal and XP reference tools.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolsget_npcGet an NPC recordARead-onlyIdempotentInspect
Get stats, traits, skills, locations and provenance for one numeric NPC ID.
| Name | Required | Description | Default |
|---|---|---|---|
| npcId | Yes | ||
| chronicle | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds the scope of the returned record (stats, traits, skills, locations, provenance), which is useful. It doesn't mention error behavior for invalid IDs, but with annotations covering the safety profile, a 3 is appropriate.
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?
One sentence, front-loaded with the resource and fields, zero waste. Every word 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 read-by-ID tool with two required params and full annotation coverage, the description is nearly complete. The only gap is that the chronicle parameter is not explained in the description, though the schema enum makes it self-documenting. No output schema exists, but the description lists the returned categories, which 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 description coverage is 0%, so the description must compensate. It explains that npcId is a numeric NPC ID and that the record includes stats/traits/etc., but it doesn't explain the chronicle parameter at all. The schema's enum and required fields carry the rest, so the description adds partial but not complete meaning.
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 uses a specific verb ('Get') and names the resource ('NPC record') plus the exact fields returned ('stats, traits, skills, locations and provenance'). It also specifies the ID type ('numeric NPC ID'), which distinguishes it from sibling search_npcs and get_npc_drops.
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 this is the direct fetch-by-ID tool, and the sibling list includes search_npcs for finding IDs and get_npc_drops for a different resource. It doesn't explicitly state 'use search_npcs when you don't have an ID', but the contrast is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_npc_dropsGet NPC x1 dropsBRead-onlyIdempotentInspect
Get effective x1 drop and spoil probabilities for one numeric NPC ID.
| Name | Required | Description | Default |
|---|---|---|---|
| npcId | Yes | ||
| chronicle | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover the important safety profile (readOnlyHint, idempotentHint, destructiveHint). The description adds that the values are 'effective' and 'x1' probabilities, adding slight context, but it doesn't explain what 'effective' means or what the response contains.
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?
A single, front-loaded sentence with no filler. Every word contributes: the operation, the resource, the rate type, and the required input scope.
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 read-only lookup with two required parameters, the description is nearly sufficient: it states the exact data returned and the input requirement. It could also mention the role of chronicle or the return shape, but the low complexity keeps this gap minor.
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 description coverage is 0%, so the description must compensate for parameter meaning. It clarifies npcId by saying 'one numeric NPC ID', but it gives no explanation of the required chronicle parameter or how it affects the probabilities. This is only partial compensation.
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?
Clear verb+resource: 'Get effective x1 drop and spoil probabilities' for a specific NPC ID. It is precise and obviously distinct from siblings like get_npc or search_npcs, but it never explicitly names or contrasts itself with them.
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 phrase 'for one numeric NPC ID' implies the intended use: when you already have a known NPC ID and need drop/spoil rates. It provides no explicit alternatives or when-not-to-use guidance, so usage is only implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_soul_crystal_progressionGet Soul Crystal progressionARead-onlyIdempotentInspect
Get Soul Crystal result stages, transitions and chances for one NPC. Result stage N means N-1 to N.
| Name | Required | Description | Default |
|---|---|---|---|
| npcId | Yes | ||
| chronicle | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only, idempotent, non-destructive behavior, so the description's added stage-number semantics and chance/transition scope provide useful extra behavioral context. The description does not contradict annotations and gives a concrete interpretation of the returned stages.
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 short sentences with no filler. The main action and scope are front-loaded, and the clarifying stage-number convention earns its place by removing ambiguity from the result interpretation.
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 read-only lookup with two required parameters and strong annotations, the description is nearly sufficient. It lacks any mention of return shape or the meaning of the chronicle enum values, but the core call intent and one important interpretation detail are present.
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 description coverage is 0%, and the description provides no direct explanation for npcId or chronicle beyond the implicit 'one NPC'. The parameter names and enum are fairly self-explanatory, but the description does not compensate for the complete lack of schema-level parameter documentation.
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 uses a specific verb ('Get') and names the exact resource ('Soul Crystal result stages, transitions and chances') plus the scope ('for one NPC'). It also clarifies the numbering convention ('Result stage N means N-1 to N'), which distinguishes the semantic of the output from vague progression terminology.
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 clearly indicates this is for a single NPC's Soul Crystal data, which implies a use case separate from list/search tools like search_npcs or general NPC info tools like get_npc. However, it does not explicitly mention alternatives or state when not to use it, so it stops just short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_xp_levelsGet XP levelsARead-onlyIdempotentInspect
Get per-level and cumulative experience values for an inclusive level range.
| Name | Required | Description | Default |
|---|---|---|---|
| toLevel | Yes | ||
| chronicle | Yes | ||
| fromLevel | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only and idempotent behavior. The description adds useful context about the inclusive range and the per-level/cumulative nature of the returned values, though it does not describe output shape, error behavior, or validation beyond the schema.
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?
A single front-loaded sentence conveys the key information with no filler; every word adds meaning.
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 read-only lookup with three parameters and a self-explanatory enum, the description plus schema is nearly sufficient. It explains the returned value semantics, but a small gap remains around the chronicle parameter and expected output format.
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 description coverage is 0%, so the description must explain the parameters. It clarifies that the range is inclusive, which helps for fromLevel/toLevel, but it never mentions the chronicle parameter or its enum options, leaving a material gap.
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 specific action ('Get'), the resource ('per-level and cumulative experience values'), and the scope ('inclusive level range'). This clearly differentiates the tool from its NPC- and soul-crystal-focused siblings.
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 gives no when-to-use guidance, prerequisites, or alternatives; usage must be inferred from the tool's subject matter. Although the siblings are unrelated, the description itself does not explicitly state when this tool should be preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_npcsSearch Lineage 2 NPCsARead-onlyIdempotentInspect
Search chronicle-scoped NPCs by name or numeric ID before opening a record.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| chronicle | Yes | Exact chronicle namespace. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds behavioral context by specifying the chronicle scoping and the search types (name or ID). It does not describe return format or pagination, but that is less critical given the annotation coverage and the tool's simple search nature.
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 a single, concise sentence that front-loads the action and scope. Every word adds value, and there is no fluff or unnecessary detail. It avoids redundancy with the schema and annotations.
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 search tool with no output schema, the description omits details about result structure (e.g., whether it returns a list of NPC IDs, names, or full records) and matching semantics (exact vs. partial). While the description covers the core search intent, an agent would benefit from knowing the return format and that the search is likely a partial match on name or exact ID. Given the tool's simplicity, this is a moderate gap.
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 description coverage is only 33% (only the 'chronicle' parameter has a description). The description partially compensates by indicating that 'query' accepts a name or numeric ID, but it adds nothing about the 'limit' parameter. The 'chronicle' parameter's enum and description are sufficient, but the gap on 'limit' and the implicit nature of query semantics prevent a higher score.
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 verb ('search'), the resource ('NPCs'), the scope ('chronicle-scoped'), and the search criteria ('by name or numeric ID'). It also implies a workflow position with 'before opening a record', effectively distinguishing it from sibling tools like get_npc. This is a precise, unambiguous purpose statement.
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 phrase 'before opening a record' provides clear context that this tool is a precursor to fetching a specific NPC, implying get_npc as the follow-up. However, it does not explicitly name the alternative or state when not to use this tool, leaving some inference required. Still, the contextual cue is strong.
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.
5 tool updates
- First observed
get_npc - First observed
get_npc_drops - First observed
get_soul_crystal_progression - First observed
get_xp_levels - First observed
search_npcs
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Read-only scripture-study engine: complete-or-fail concordance over Greek NT, Hebrew OT, LXX.
Read-only access to your tabletop campaigns: codex, sessions, and session notes.
GW1 build compiler: skill data, template code encode/decode, validation, hero roster. Read-only.
Read-only U.S. lab-test catalog, collection-site search, and reference-range context.
Related MCP Servers
- AlicenseBqualityAmaintenanceRead-only MCP server for public Guild Wars 1 sources (wiki, builds, YouTube, Reddit) and optional local install inventory.142MIT
- AlicenseAqualityBmaintenanceProvides read-only Arknights intelligence over MCP, enabling structured queries about stages, enemies, operators, and modules with region tagging and evidence-backed analysis. It uses versioned SQLite snapshots and never fetches upstream data at query time.13Apache 2.0
- FlicenseAqualityBmaintenanceMCP server providing read-only access to Eve Online's Static Data Export (SDE), including ship stats, module attributes, universe data, blueprints, and more. Enables queries via tools like search_types, get_type, and compare_types.17-
- FlicenseNot gradedqualityCmaintenanceStandalone read-only MCP server for browsing Oracle HDL business object metadata. Provides tools to search and retrieve catalog entries, components, and attributes from a local repository.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct retrieval task: NPC search, full NPC details, drop tables, soul crystal stages, and XP levels. There is no meaningful overlap or ambiguity in what each tool returns.
All tool names use snake_case and follow a predictable verb_noun pattern, with get_* for direct lookups and search_npcs for discovery. The naming is consistent and easy to predict.
Five tools is a well-scoped size for a focused reference-data server. Each tool covers a meaningful slice of the domain without redundancy or unnecessary surface area.
The set covers NPC discovery, detailed stats, drops, soul crystals, and XP progression effectively. An item lookup for drop results or broader Lineage 2 reference data would improve coverage, but the existing workflows are not dead-ended.