ELS MCP server
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., "@ELS MCP serverWhat is the employment rate in Leeds?"
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.
ELS MCP server
This is a proof-of-concept Model Context Protocol (MCP) server that allows LLM agents (eg. chatbots like Claude or ChatGPT) to make meaningful use of the data provided by the Explore Local Statistics API.
This code in this repo was created with the use of LLMs (Genie Code and Github Copilot). It is not intended for production use.
Note: It is not possible to add custom MCP servers to some LLM chatbots, like M365 Copilot.
Run the server locally
To run this app locally, you need Python installed on your machine. You also need to install an LLM client (eg. Claude Desktop) in order to actually use it. (When run locally, the MCP server can't be accessed by web-based apps!)
Run the server
Set up a Python environment and install the dependencies (the first command may start python instead of python3 on your machine):
python3 -m venv .mcpenv
source .mcpenv/bin/activate
pip install -r requirements.txtRun the MCP server (you need to do this every time you want to use it):
source .mcpenv/bin/activate
python3 -m uvicorn api.index:app --host 127.0.0.1 --port 8001Connect it to your LLM
To use this local MCSP server, you'll need to install your favourite LLM chatbot on your machine and then configure it. The example below is specific to Claude Desktop, but should be similar for other services.
Open the Settings dialog and then click the Developer tab and Edit config button. This should open a JSON configuration file that you need to edit and save manually.
Add the following lines towards the bottom of the file:
{
...EXISTING CONFIG ABOVE...
"mcpServers": {
"els-mcp-server": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:8001/mcp"]
}
}
}Save the file, make sure your MCP server is running, and then restart the Claude Desktop app.
Start using it
Check that your chatbot is connected to the server by asking:
Are you able to connect to els-mcp-server?Once connected, if you ask questions that can be answered with data on Explore Local Statistics, your chatbot should automatically make use of the API to give you an answer, eg:
Which local authority in Wales has the highest employment rate?Deploy to Vercel
This app has the configuration files necessary to deploy it to Vercel. This is not intended to be a solution for use in production, but allows the MCP server to be tested by other people without having to run it locally on their machine.
Deployment steps
Fork this repo to your own Github account.
In Vercel, create a new project from that repo.
Vercel will auto-detect Python and install from requirements.txt.
Deploy the app.
Use it with your LLM
Once set up on Vercel, you can add the MCP server to your favourite LLM chatbot. If you're using Claude (on web or desktop), the steps are as follows:
Go to Settings (Customize) → Connectors
Click +, then Add custom connector
Paste in the URL:
https://<your-app>.vercel.app/mcpClick Add, then Connect
Once you've done this, you can start asking questions in chat.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/bothness/els-mcp-poc'
If you have feedback or need assistance with the MCP directory API, please join our Discord server