AbleSign MCP
MCP server for the AbleSign digital signage API, enabling AI agents to manage screens, media, playlists, and workspaces through natural language.
README
AbleSign MCP
A Python Model Context Protocol server for the AbleSign digital signage API.
The purpose of this project is simple: let AI agents operate AbleSign digital signage without making them speak REST by hand. It was fully vibe coded. There is no claim that this is sacred architecture or precious artisanal software. The agents do not care; they just have to do their jobs with it.
It exposes all 44 documented API operations as MCP tools:
- screens and screen playlists
- screen groups, membership, and group playlists
- media folders and media files
- AbleSign's initiate/finish upload and replacement flows
- web apps
- workspaces and workspace users
Requirements
- Python 3.11+
- an AbleSign API key, created in AbleSign CMS → Account → API Keys
Install and run
Using uv:
cp .env.example .env
# Set ABLESIGN_API_KEY in .env, then export it or use your preferred env loader.
uv sync
ABLESIGN_API_KEY=ak_your_key uv run ablesign-mcp
The default transport is stdio. To run a Streamable HTTP server:
ABLESIGN_API_KEY=ak_your_key \
uv run ablesign-mcp --transport streamable-http
Clients then connect to http://127.0.0.1:8000/mcp.
MCP client configuration
For a stdio MCP client, use:
{
"mcpServers": {
"ablesign": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/ablesign-mcp",
"run",
"ablesign-mcp"
],
"env": {
"ABLESIGN_API_KEY": "ak_your_key",
"ABLESIGN_WORKSPACE_ID": "123"
}
}
}
}
ABLESIGN_WORKSPACE_ID is optional. Without it, AbleSign uses the account's
default workspace.
Environment
| Variable | Required | Default | Purpose |
|---|---|---|---|
ABLESIGN_API_KEY |
yes | — | Bearer token used for every API request |
ABLESIGN_WORKSPACE_ID |
no | account default | Sent as Workspace-Id |
ABLESIGN_BASE_URL |
no | https://api.ablesign.tv/api/v1 |
API base URL |
ABLESIGN_TIMEOUT |
no | 30 |
request timeout in seconds |
ABLESIGN_MCP_TRANSPORT |
no | stdio |
stdio, streamable-http, or sse |
ABLESIGN_MCP_HOST |
no | 127.0.0.1 |
HTTP bind host |
ABLESIGN_MCP_PORT |
no | 8000 |
HTTP bind port |
Media uploads
AbleSign uses a three-step upload flow:
- Call
initiate_media_upload(orinitiate_media_replacement). - Upload the raw file bytes with HTTP
PUTto the returned signed URL. - Call
complete_media_upload(orcomplete_media_replacement) with the returned upload ID.
The MCP server exposes the authenticated AbleSign steps. Uploading bytes to the temporary signed storage URL is intentionally left to the caller so the server does not receive arbitrary local filesystem access.
Development
uv sync --extra dev
uv run pytest
uv run ruff check .
uv run ruff format --check .
The API is currently marked beta by AbleSign. The server returns AbleSign errors with their HTTP status, error code, and message so callers can react to validation and rate-limit failures.
Philosophy and license
This project is released under the MIT License. Do whatever you would like with it. Use it, fork it, break it, fix it, sell it, or rewrite it 1,000 times. I really do not care. My agents do not care either. They just have to do their job with it and make gastronomy great again. lol
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.
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.
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.
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.