Skip to main content
Glama
d0whc3r

EGIPCI MCP Server

by d0whc3r

EGIPCI MCP Server

MCP (Model Context Protocol) server for querying archaeological site information from the EGIPCI service (Expedient d'Informació del Patrimoni Cultural Immoble) of the Department of Culture of the Generalitat de Catalunya.

This server allows AI editors like Claude Code, Cursor, and other MCP clients to access archaeological information from Catalunya through the standard MCP protocol.

Note: This package is designed to be used as an MCP server through npx, not as a global installation.

Quick Start

This package is designed as an MCP server - no installation needed! Just configure it in your MCP client.

Related MCP server: Met Museum MCP Server

Usage

MCP Client Configuration

To use this server with an MCP client, add the following configuration to your mcp.json file:

{
  "mcpServers": {
    "gencat-egipci": {
      "command": "npx",
      "args": ["-y", "@d0whc3r/egipci-mcp@latest"],
      "env": {
        "EGIPCI_COOKIE": "your_intranet_cookie_value_here"
      }
    }
  }
}

Available Tools

query_egipci_site

Query information for a specific archaeological site.

Parameters:

  • cookie (string, optional): .intranet cookie for EGIPCI authentication. If not provided, the EGIPCI_COOKIE environment variable will be used

  • id (string, required): Archaeological site ID to query

Usage example:

With cookie as parameter:

{
  "name": "query_egipci_site",
  "arguments": {
    "cookie": "your_intranet_cookie_value",
    "id": "12345"
  }
}

With cookie from environment variable:

{
  "name": "query_egipci_site",
  "arguments": {
    "id": "12345"
  }
}

Response: Returns the site information in XML format as provided by the EGIPCI service.

Authentication Methods

The safest and most convenient way is to configure the cookie in the EGIPCI_COOKIE environment variable in the MCP configuration. This has several advantages:

  • Security: The cookie is not exposed in each tool call

  • Convenience: You don't need to pass the cookie in each query

  • Reusability: Single configuration for all queries

  • Maintenance: Easy update when the cookie expires

You can also pass the cookie directly as a parameter in each call. This is useful for:

  • Using different cookies for different queries

  • Cases where you cannot configure environment variables

  • Testing and development

To obtain the required .intranet cookie:

  1. Go to https://egipci.cultura.gencat.cat/ in your browser

  2. Log in with your credentials

  3. Open developer tools (F12)

  4. Go to the "Application" or "Storage" tab

  5. In "Cookies", look for the .intranet cookie

  6. Copy the cookie value to use as parameter

Error Handling

The server handles various types of errors using the got library:

  • Missing or invalid parameters: Input validation with Zod

  • HTTP errors: Status codes 4xx/5xx using got.HTTPError

  • Network errors: Connectivity issues using got.RequestError

  • Authentication errors: Invalid or expired cookie

  • Format errors: XML response validation

All errors are returned with descriptive messages.

Development

For contributors and developers working on this project:

Requirements

  • Valid .intranet cookie for EGIPCI authentication

  • For development: Node.js >= 18.0.0, pnpm

Install Server
A
license - permissive license
B
quality
C
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
4Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    A MCP Server that lets user ask AI models to discover the collection of the Metropolitan Museum of Art. Adds the discovered art works as Resources on the server.
    Last updated
    4
    188
    31
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that enables AI-powered exploration of RDF data and SPARQL querying via RDF4J. It provides tools for executing queries, searching knowledge graph resources, and retrieving schema summaries.
    Last updated
    13
    1
    MIT
  • A
    license
    A
    quality
    F
    maintenance
    MCP server for querying Spanish government open data APIs including grants, legislation, company registry, statistics, and open data catalog. Enables LLMs to access Spanish public information on-the-fly.
    Last updated
    26
    5
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server for AI dialogue using various LLM models via AceDataCloud

  • This MCP server provides seamless access to Malaysia's government open data, including datasets, w…

  • Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer

View all MCP Connectors

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/d0whc3r/egipci-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server