YouGile Secure MCP
Provides read-only access to YouGile project management data including tasks, boards, columns, and users via the YouGile API v2.
README
YouGile Secure MCP
A local stdio Model Context Protocol server for the YouGile API v2, designed for Hermes Agent.
v0.1.0: safe read-only access
The initial release deliberately exposes only these six non-destructive tools:
list_projectslist_boardslist_columnslist_tasksget_tasklist_users
Every MCP tool has readOnlyHint=true, destructiveHint=false, and openWorldHint=false.
Security model
- Uses only
YOUGILE_API_KEY; it never accepts, stores, or sends an account login/password. - Never creates, lists, or deletes YouGile API keys.
- Never writes credentials to
/tmpor project files. - Does not expose create, update, upload, webhook, or delete operations.
policy.pycontains a tested, one-use and payload-bound approval primitive for a future explicitly approved write phase. Delete actions remain disabled.
Install
git clone https://github.com/<your-account>/mcp-yougile.git
cd mcp-yougile
python3 -m venv .venv
.venv/bin/python -m pip install -e '.[dev]'
Set the API key in the environment of the MCP host:
export YOUGILE_API_KEY='your-api-key'
.venv/bin/python run_server.py
Hermes configuration
Keep the secret in ~/.hermes/.env with 0600 permissions:
YOUGILE_API_KEY=your-api-key
Then add this server under mcp_servers in ~/.hermes/config.yaml:
mcp_servers:
yougile:
command: /absolute/path/to/mcp-yougile/.venv/bin/python
args: [/absolute/path/to/mcp-yougile/run_server.py]
env:
YOUGILE_API_KEY: "${YOUGILE_API_KEY}"
timeout: 60
connect_timeout: 30
sampling:
enabled: false
Verify it before restarting Hermes:
hermes mcp test yougile
Development
.venv/bin/python -m pytest -q
.venv/bin/python -m compileall -q src run_server.py
License
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.