AWO MCP Demo
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., "@AWO MCP Demohow many AWO facilities are in Berlin?"
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.
AWO MCP Demo
Overview
This project demonstrates how the Model Context Protocol (MCP) can be used to expose processed AWO data to AI assistants such as Claude Desktop.
The prototype does not replace the existing AWO data pipeline. Instead, it provides a standardized interface between AI assistants and processed organizational data.
The current implementation uses a small CSV dataset as a demonstration. In a production environment, the same MCP server can be connected to the processed AWO database or data lake.
Related MCP server: CKAN MCP Server
Architecture
User
│
Claude Desktop
│
MCP Server
│
Processed Dataset (CSV)Production Architecture
User
│
AI Assistant
│
MCP Server
│
Processed AWO Data
│
Existing AWO Pipeline
(Scraping → Cleaning → Normalization → Deduplication)Features
MCP server implemented with FastMCP
Facility search by city
Facility search by service
Facility counting
Claude Desktop integration
Interactive Python client for testing
Installation
Clone the repository.
git clone <repository-url>
cd awo-mcp-demoCreate and activate a Conda environment.
conda create -n awo-mcp python=3.11
conda activate awo-mcpInstall the required packages.
pip install -r requirements.txtRunning the MCP Server
Open a terminal in the project directory and activate the Conda environment.
conda activate awo-mcp
python server.pyThe server will start and wait for incoming MCP requests. This is expected behavior. Leave this terminal open while testing.
Running the Demo Client
Open a second terminal in the same project directory.
Activate the Conda environment again.
conda activate awo-mcp
python client.pyThe interactive menu will appear:
==============================
AWO MCP Demo
==============================
1. Count facilities
2. Search by city
3. Search by service
0. ExitChoose an option and enter the requested information. The client will communicate with the MCP server and display the returned results. for instance:
Option 1 – Count Facilities
Select 1 and enter a city name (e.g., Berlin).
The client calls the MCP tool:
count_facilities(city="Berlin")The server searches the dataset and returns the number of matching facilities.
Example:
City: Berlin
Result
------
2Claude Desktop Integration
Instead of using the demo client, you can connect the MCP server directly to Claude Desktop.
Step 1 – Install Claude Desktop
Download Claude Desktop:
Step 2 – Configure the MCP Server
Open the Claude Desktop configuration file and add the following server configuration.
{
"mcpServers": {
"awo": {
"command": "C:\\Users\\<USERNAME>\\miniconda3\\envs\\awo-mcp\\python.exe",
"args": [
"D:\\path\\to\\awo-mcp-demo\\server.py"
]
}
}
}Replace:
<USERNAME>with your Windows username.D:\\path\\to\\awo-mcp-demo\\server.pywith the full path to yourserver.pyfile.
Step 3 – Restart Claude Desktop
Save the configuration file and restart Claude Desktop.
The MCP server should appear under Settings → Developer → Local MCP Servers.
Once connected, Claude can automatically use the available MCP tools.
Example questions:
How many AWO facilities are in Berlin?
Show me all AWO facilities in Berlin.
Find facilities that provide elderly care.
Example Questions
How many AWO facilities are in Berlin?
Show me all AWO facilities in Berlin.
Find facilities that provide elderly care.
Find childcare facilities.
Future Improvements
Connect to the real processed AWO dataset
Add additional MCP tools
Connect to a production database
Add authentication and authorization
Improve logging and monitoring
Containerize the application with Docker
License
MIT License
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.
Related MCP Servers
- Alicense-qualityCmaintenanceProvides access to Sweden's comprehensive municipal and regional statistics database with semantic search capabilities. Enables natural language queries against thousands of Key Performance Indicators covering various aspects of Swedish public sector data.Last updated16Apache 2.0
- AlicenseAqualityBmaintenanceEnables AI assistants to search, explore, and query any CKAN open data portal through natural language, making public datasets accessible without requiring knowledge of the portal's API.Last updated2032257MIT
- Alicense-qualityCmaintenanceEnables users to search and query City of Tucson GIS open geospatial datasets (zoning, parcels, public safety, transport, city services) through natural language.Last updated29MIT
- Alicense-qualityCmaintenanceEnables searching and querying City of Albuquerque open geospatial datasets (parcels, zoning, public works) via ArcGIS Feature Services, allowing natural language access to GIS data.Last updated2MIT
Related MCP Connectors
Verified, citable German & EU law for any LLM. Daily updates from official sources, hosted in DE.
Search US grants + federal contracts (Grants.gov + SAM.gov) from any LLM.
Search Swiss federal legislation: laws, articles, amendments via the Fedlex SPARQL endpoint.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Atrash87/awo-mcp-demo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server