Agileday 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., "@Agileday MCP ServerFind me someone who knows Python and Kubernetes"
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.
Agileday MCP Server
A Model Context Protocol (MCP) server for Agileday.
This server bridges Agileday's competence and employee data with LLMs (like Claude Desktop or Cursor). It allows you to ask natural language questions about your organization's skills, find experts, and explore competence profiles.
Capabilities
This server implements the following tools:
find_experts_with_skill
Query: "Who knows React?"
Action: Searches for employees who possess a specific skill and returns their proficiency levels.
get_employee_competence_profile
Query: "What are Jane Doe's top skills?"
Action: Retrieves a full list of skills, proficiency levels, and motivation for a specific employee.
list_organization_skills
Query: "What skills do we have in the organization?"
Action: Retrieves the full taxonomy of skills available in your Agileday workspace, grouped by category. This helps the AI understand exactly which terms to search for and avoids guessing.
Related MCP server: Internal Data MCP Server
Configuration
You need the following environment variables to run the server:
Variable | Description | Example |
| Your company slug (subdomain). |
|
| Your API Bearer token. |
|
Quick Start (Docker)
The easiest way to run the server is using the pre-built Docker image from the GitHub Container Registry.
1. Run with Claude Desktop
Add this configuration to your claude_desktop_config.json:
{
"mcpServers": {
"agileday": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "AGILEDAY_TENANT_ID=your_tenant_id",
"-e", "AGILEDAY_API_TOKEN=your_api_token",
"ghcr.io/eficode/mcp-agileday:latest"
]
}
}
}Option 2: Docker
Clone the repository:
git clone [https://github.com/yourusername/agileday-mcp-server.git](https://github.com/yourusername/agileday-mcp-server.git) cd agileday-mcp-serverBuild the image:
docker build -t agileday-mcp-server .Configure Claude Desktop: Add the following to your
claude_desktop_config.json(usually located at~/Library/Application Support/Claude/on macOS or%APPDATA%\Claude\on Windows).{ "mcpServers": { "agileday": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "AGILEDAY_TENANT_ID=your_tenant_id", "-e", "AGILEDAY_API_TOKEN=your_api_token", "agileday-mcp-server" ] } } }Restart Claude Desktop.
Option 3: Local Python
Clone the repository and install dependencies:
git clone [https://github.com/yourusername/agileday-mcp-server.git](https://github.com/yourusername/agileday-mcp-server.git) cd agileday-mcp-server pip install -r requirements.txtConfigure Claude Desktop: Update your
claude_desktop_config.jsonto point to the python script:{ "mcpServers": { "agileday": { "command": "python3", "args": ["/absolute/path/to/agileday_server.py"], "env": { "AGILEDAY_TENANT_ID": "your_tenant_id", "AGILEDAY_API_TOKEN": "your_api_token" } } } }
Option 4: Run as service
To deploy this as a standalone service (e.g., for remote access or clients that support HTTP transport), use the http transport mode.
```bash
docker run -d \
-p 8000:8000 \
-e AGILEDAY_TENANT_ID=your_tenant \
-e AGILEDAY_API_TOKEN=your_token \
ghcr.io/eficode/mcp-agileday:latest \
--transport http
```The server will be available at:
Universal Endpoint: http://localhost:8000/mcp (Supports both SSE stream and POST messages)
Health Check: http://localhost:8000/health
Example Prompts
Once connected, you can ask Claude questions like:
"Who are the experts in Python at our company?"
"Find me someone who knows Service Design and has a high proficiency."
"What is Jane Doe's competence profile?"
"Do we have enough people with Kubernetes skills?"
Security Note
API Tokens: Never commit your
AGILEDAY_API_TOKENto version control. Always pass it via environment variables or your local config file.ReadOnly Access: It is recommended to use an API token with read-only permissions if possible, as this tool only fetches data.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Fork the repository.
Create your feature branch (
git checkout -b feature/AmazingFeature).Commit your changes (
git commit -m 'Add some AmazingFeature').Push to the branch (
git push origin feature/AmazingFeature).Open a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
- Flicense-quality-maintenanceConnects AI assistants to GitLab projects, enabling natural language queries to view merge requests, code reviews, discussions, pipeline test results, and respond to comments directly from chat.Last updated
- Flicense-qualityDmaintenanceExposes internal employee directories and project management systems to AI models through standardized tools and resources. It enables AI assistants to search for team members, query project statuses, and explore organizational hierarchies with secure role-based access control.Last updated
- Alicense-qualityDmaintenanceEnables AI assistants to interact with Atlassian Cloud APIs for Confluence and Jira, supporting document management, search, issue tracking, and sprint operations through natural language.Last updated2MIT

schoox-mcp-serverofficial
AlicenseAqualityCmaintenanceEnables querying Schoox LMS data (users, courses, enrollments, etc.) via natural language using AI assistants, without writing API code.Last updated157MIT
Related MCP Connectors
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
Search your knowledge bases from any AI assistant using hybrid RAG.
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/eficode/mcp-agileday'
If you have feedback or need assistance with the MCP directory API, please join our Discord server