Skip to main content
Glama
kbzowski

agh-skos-mcp

by kbzowski

agh-skos-mcp

MCP server for SkOs — the AGH University staff directory. No API key, no login.

Tools

Tool

Arguments

Returns

search_people

nazwisko, imie, email, pokoj, telefon (prefix, case-insensitive) · tytul, id_status, grupa, stanowisko, funkcja, jednostka, pawilon, cialo (id or Polish label) · limit

total, results[] (name, title, url, units), person — full profile, set only when exactly one person matched

get_person

person — slug or url, e.g. krzysztof-bzowski-7674

id, name, title, emails, phones, www, workplaces (unit, job, group, function, room), collegial bodies

list_filter_options

field, contains

[{value, label}]

An ambiguous label raises an error listing the candidates. A query with no filters is rejected.

Related MCP server: CRU MCP Server

Add to Claude Code

Requires uv.

.mcp.json in the project root:

{
  "mcpServers": {
    "agh-skos": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/kbzowski/agh-skos-mcp", "agh-skos-mcp"]
    }
  }
}

Or via CLI:

claude mcp add agh-skos --scope user -- uvx --from git+https://github.com/kbzowski/agh-skos-mcp agh-skos-mcp

Check with claude mcp list or /mcp.

Development

git clone https://github.com/kbzowski/agh-skos-mcp && cd agh-skos-mcp
uv sync

uv run ruff check . && uv run ruff format .
uv run mypy
uv run pytest              # offline
uv run pytest -m network   # against the live directory

uvx caches its build. To run your working copy:

claude mcp add agh-skos --scope user -- uv run --directory /path/to/agh-skos-mcp agh-skos-mcp

Implementation notes

  • Data comes from the __NEXT_DATA__ JSON embedded in each rendered page, not from HTML scraping.

  • Filter dictionaries come from the site's /a/select?id=… endpoint.

  • E-mails are stored obfuscated (reversed <a> tag, # for @) and decoded on the way out.

  • A search matching exactly one person redirects /search/ → profile page; search_people follows it and returns the full record in person.

License

MIT

Available Tools

3 tools
get_personA

Fetch a full SkOs profile: units, position, room, phones, email, www.

person: profile url or slug as returned by search_people, e.g. "/osoba/krzysztof-bzowski-7674.html" or "krzysztof-bzowski-7674".

ParametersJSON Schema
NameRequiredDescriptionDefault
personYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
urlYes
wwwYes
nameYes
titleYes
emailsYes
collegialYes
workplacesYes
annotationsYes
mobile_phonesYes

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full responsibility for behavioral disclosure. It clearly states the operation is a fetch (read-only) and enumerates the data returned. It also gives concrete input format examples. It does not mention error handling, rate limits, or authentication, but for a simple read operation the essential behavior is sufficiently disclosed.

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 extremely concise: one sentence for the purpose and one sentence for the parameter format, with an example. Every word adds value, and the most important information (what the tool does) is front-loaded. No filler or repetition.

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?

Given the tool's simple interface (one required parameter, no nested objects) and the presence of an output schema, the description is complete. It already states the return fields, so external users know what to expect. The parameter guidance is thorough, and the tool's low complexity means no additional context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has a single parameter 'person' with only a title and no description (0% schema coverage). The tool description fully compensates by explaining the parameter's meaning: 'profile url or slug as returned by search_people', and provides concrete examples. This goes far beyond the schema's bare definition and gives the agent the exact format required.

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 opens with a specific verb and resource: 'Fetch a full SkOs profile,' followed by a list of fields returned (units, position, room, phones, email, www). This clearly distinguishes it from siblings like 'search_people' and 'list_filter_options' by emphasizing a single profile fetch rather than a search or filter operation.

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 provides clear usage context by specifying that the 'person' parameter should be 'a profile url or slug as returned by search_people'. This implicitly tells the agent to first call search_people to obtain the identifier, then use get_person for the full profile. It does not explicitly mention when not to use the tool or name alternatives, but the input guideline is strong enough to convey the typical workflow.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_filter_optionsA

List allowed values for a dictionary filter of search_people.

field: one of tytul, id_status, grupa, stanowisko, funkcja, jednostka, pawilon, cialo. contains: optional case-insensitive substring to narrow the list.

ParametersJSON Schema
NameRequiredDescriptionDefault
fieldYes
containsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden. It discloses key behaviors: the valid field values (enumerated) and the case-insensitive substring filtering for 'contains'. It doesn't mention side effects, but for a read-only list tool this is sufficient. It adds value 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief, front-loaded with the main purpose, and uses a clean two-part structure for parameters. Every sentence adds meaningful information without any waste.

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?

For a simple two-parameter tool with an output schema, the description is complete. It covers the tool's purpose, parameter semantics, and relevant constraints. No additional behavioral details (e.g., return format) are needed given the output schema exists.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description fully compensates. It explains each parameter in detail: 'field' with a complete list of allowed values, and 'contains' with its optional, case-insensitive filtering behavior. This is far more informative than the raw schema.

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 a specific action ('List allowed values') and resource ('dictionary filter of search_people'), clearly distinguishing it from sibling tools like search_people and get_person. It leaves no doubt about the tool's purpose.

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 clearly implies the use case: when using search_people with a dictionary filter, you need to know allowed values. It doesn't explicitly exclude alternatives or say 'use this before search_people', but the context is straightforward and sufficiently clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_peopleA

Search AGH staff in the SkOs directory (skos.agh.edu.pl advanced search).

Text filters (nazwisko, imie, email, pokoj, telefon) are case-insensitive prefix matches - no wildcards. Dictionary filters (tytul, id_status, grupa, stanowisko, funkcja, jednostka, pawilon, cialo) accept either the numeric id or the Polish label - use list_filter_options to browse them.

Returns matching people with their title, unit and profile url; pass that url to get_person for contact data. When exactly one person matches, the full profile is already included in the "person" field.

ParametersJSON Schema
NameRequiredDescriptionDefault
imieNo
cialoNo
emailNo
grupaNo
limitNo
pokojNo
tytulNo
funkcjaNo
pawilonNo
telefonNo
nazwiskoNo
id_statusNo
jednostkaNo
stanowiskoNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYes
totalYes
personYes
resultsYes
returnedYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses important behaviors: text filters are case-insensitive prefix matches with no wildcards, dictionary filters accept numeric IDs or Polish labels, and the return includes title, unit, and profile URL. It also notes the special case of a single match. However, it omits details like pagination, empty result behavior, and rate limits, preventing a perfect score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with three paragraphs: purpose, filter semantics, and return usage. It is concise but dense, with each sentence adding value. Slightly longer than minimal, but justified by the tool's complexity.

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 high parameter count and the presence of an output schema, the description covers the essential aspects: purpose, filter behavior, return fields, and the relationship to sibling tools. It does not explicitly explain the 'limit' parameter's effect or behavior with no criteria, but these are minor gaps for a search tool.

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 description coverage is 0%, so the description compensates by grouping all 14 parameters into text filters and dictionary filters, listing each explicitly. It explains that text filters are prefix matches and dictionary filters accept IDs or labels, adding meaning beyond the bare schema. However, it does not explain the 'limit' parameter or provide translations for the Polish field names.

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 'Search AGH staff in the SkOs directory' with a specific verb and resource. It also distinguishes itself from siblings by referencing list_filter_options for browsing filter options and get_person for contact data, making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells users when to use alternatives: 'use list_filter_options to browse them' for dictionary filters, and 'pass that url to get_person for contact data.' It also clarifies when the full profile is included, implying you may not need get_person for single matches.

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.

  1. 3 tool updatesv0.1.0
    • First observedget_person
    • First observedlist_filter_options
    • First observedsearch_people

TDQS

A4.7/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a distinct purpose: list_filter_options browses filter values, search_people finds people, and get_person retrieves full profiles. The optional inline profile in search_people is a convenience, not an overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: list_filter_options, search_people, get_person. No mixed conventions or vague verbs.

Tool Count5/5

Three tools form a coherent, minimal workflow for searching a people directory: browse filter options, search, and fetch details. The count is appropriate for the narrow, read-only scope.

Completeness5/5

The tool surface covers the full read-only lifecycle: discovering filter values, performing searches, and retrieving complete profiles. No obvious gaps for the stated purpose.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    MCP server for Polish company registries that enables looking up companies by NIP or KRS using public government APIs with no authentication required.
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    MCP server that enables searching and retrieving Czech university theses from theses.cz, including full-text search, metadata, and direct PDF downloads with optional cookie-based authentication.
    3
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Institutional MCP server that centralizes access to identity, institutional profiles, and basic person data. Currently a bootstrap with no business logic or tools implemented.
    -