LLX Agent MCP Implementation
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., "@LLX Agent MCP Implementationfind today's news about AI"
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.
MCP Implementation (Phase 1 — local test)
A minimal MCP server (the "skills library") with one sample skill search_news.
Goal: prove that local Claude Code can auto-call a skill over MCP.
Folder
mcp implementation/
├─ server/
│ └─ main.py # MCP server + the search_news skill
├─ requirements.txt # dependency: mcp
├─ .mcp.json # tells Claude Code to connect to the local server
└─ README.md # this fileRelated MCP server: MCP Practice
How to run
(Recommended) create a virtual environment:
python -m venv .venv .venv\Scripts\activate # Windows PowerShellInstall the dependency:
pip install -r requirements.txtStart the server (leave this terminal running):
python server/main.pyIt serves at:
http://127.0.0.1:8000/mcpOpen Claude Code in this folder (
mcp implementation) so it reads.mcp.json. Approve the new MCP server if prompted. Check it connected with/mcp.
How to verify success
In Claude Code, type:
find today's news about AI
Claude should automatically call the search_news skill and reply with:
Today's news about 'AI': [demo result] The LLX Agent MCP server is working!
✅ If you see that, the full chain works: local Claude → auto MCP call → skill runs → returns result.
What changes when we move to the cloud
Nothing in the skill logic. We deploy server/main.py to Azure Container Apps,
and the only edit on the employee side is the url in .mcp.json:
"url": "https://<your-azure-app>.azurecontainerapps.io/mcp"(plus an auth token header, added in the security phase).
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
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/Cathylixi/LLX-Agent-MCP-Implementation'
If you have feedback or need assistance with the MCP directory API, please join our Discord server