tuskr-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., "@tuskr-mcp-serverList all test cases in the 'Login' project"
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.
tuskr-mcp-server
Implements a Model Context Protocol (MCP) server for the Tuskr REST API
Built on the FastMCP Python SDK.
Supports access token authentication.
Installation
Environment variables / .env file
Set up environment variables or configure the .env file using the .env.example template.
The following environment variables are supported:
TUSKR_TENANT_ID=<your tenant id>
TUSKR_ACCESS_TOKEN=<your access token>(this doc desc https://tuskr.app/kb/latest/api)
and optionally
MCP_TRANSPORT=<transport type: http or stdio>
MCP_HOST=<host for HTTP transport>
MCP_PORT=<port for HTTP transport>Related MCP server: TestRail MCP Server
Command Line Parameters
The MCP server supports the following command line parameters:
--transport: Transport type for the MCP server. Options:http(default) orstdio--host: Host address for HTTP transport (default:0.0.0.0)--port: Port number for HTTP transport (default:8000)
Note: The --host and --port parameters are only applicable when using the http transport.
Default Values
Transport:
http(can be overridden withMCP_TRANSPORTenvironment variable)Host:
0.0.0.0(can be overridden withMCP_HOSTenvironment variable)Port:
8000(can be overridden withMCP_PORTenvironment variable)
Connect from client
HTTP Transport (Default)
Use the following template to connect the server via HTTP:
{
"mcpServers": {
"tuskr": {
"transport": "http",
"url": "http://<your-mcp-dns-or-ip>/mcp/",
"headers": {
"Authorization": "Bearer <your access token>",
"Tenant-ID": "<your-tuskr-tenant-id>"
}
}
}
}The Authorization is mandatory.
The Tenant-ID is not required and can be set on the server side using the TUSKR_TENANT_ID env variable. It's convenient in case you have a single MCP Server for your organization.
Migrating from TUSKR_ACCOUNT_ID
Earlier versions of this server used the env var TUSKR_ACCOUNT_ID and the HTTP header
Account-ID. These continue to work, but emit a deprecation warning. Tuskr's own
documentation and UI consistently use the term "Tenant ID" (it is part of the REST URL
path: /api/tenant/<tenant-id>/), so the preferred names are now TUSKR_TENANT_ID and
the Tenant-ID HTTP header. Both names will be supported until a future major version
removes the legacy names.
To migrate an existing config, replace TUSKR_ACCOUNT_ID with TUSKR_TENANT_ID; no
other changes are required.
stdio Transport (for local development)
For local development and integration with tools like uvx, use the stdio transport:
{
"mcpServers": {
"tuskr": {
"transport": "stdio",
"command": "uvx",
"args": ["tuskr-mcp-server", "--transport", "stdio"]
}
}
}or use uv with source code:
{
"mcpServers": {
"tuskr": {
"transport": "stdio",
"command": "uv",
"args": [
"--directory",
"/path/to/your/tuskr-mcp-server",
"run",
"src/main.py",
"--transport",
"stdio"
]
}
}
}Development
Setup
Clone repo
Install development dependencies:
uv sync --devCreate
.envfrom.env.example
Running MCP service
HTTP Transport (Default)
uv run --env-file .env src/main.pystdio Transport (for local development)
uv run --env-file .env src/main.py --transport stdioCustom Host/Port
uv run --env-file .env src/main.py --host 127.0.0.1 --port 9000Running tests
The project uses pytest for testing. The following command will run all tests
uv run pytest -vsxRunning linters
The project uses the ruff tool as a linter.
The following command allows to run linter
uv run ruff checkand this command allow to fix formatting
uv run ruff formatDockerization
The following command allows to build a docker image
docker build -t tuskr-mcp .and then you can run it using the
docker run -it tuskr-mcpMaintenance
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
AlicenseBqualityDmaintenanceEnables interaction with the Tembo API to manage organization tasks and view enabled code repositories. Users can create, search, and list tasks or retrieve account information directly through MCP-compatible clients.5171MIT- AlicenseAqualityFmaintenanceEnables management of TestRail projects, test cases, runs, and results directly through MCP-supported clients. It provides a comprehensive set of tools to interact with the TestRail API for seamless test cycle management within AI environments.421,12944MIT
- Alicense-qualityDmaintenanceEnables to interact with Jira AIO Test Case Management System, allowing retrieval of test cases, projects, folders, and search functionality.Apache 2.0
- AlicenseBqualityBmaintenanceMCP server for Tuskr test management that allows browsing, searching, reading, creating, and updating test cases, suites, sections, and test runs from any MCP host like Cursor.17MIT
Related MCP Connectors
Search, document and execute authenticated API calls across 500+ apps via one MCP server
Official MCP server for Qase — manage test cases, runs, suites, defects via AI tools.
Provide seamless access to Appfolio Property Manager Reporting API through a standardized MCP serv…
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/BoomBidiBuyBuy/tuskr-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server