# Appveyor — MCP server on mcp.ai > Connect your Appveyor account and use 14 tools for developer tools straight from your AI agent. Connect with your own API key. AppVeyor is a hosted continuous integration service for building and deploying applications. By: mcp.ai · official Page: https://mcp.ai/appveyor ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_appveyor?ms=1787291340000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/appveyor/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/appveyor/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/appveyor/skill.md Postman collection (v2.1): https://mcp.ai/appveyor/postman.json ## Tools - appveyor_delete_build(buildId: integer) — Tool to delete a build by ID. Use when you need to remove a build from AppVeyor. The API returns 204 No Content on successful deletion. - appveyor_download_build_log(jobId: string) — Tool to download the build log for a specific job. Use when you need to retrieve the log output from a completed or running build job. - appveyor_get_build_artifacts(jobId: string) — Tool to get the list of artifacts for a specific build job. Use when you need to retrieve artifacts after a job completes. - appveyor_get_build_by_version(accountName: string, projectSlug: string, buildVersion: string) — Tool to get a specific project build by version number. Use when you need to retrieve detailed information about a build using its version identifier. - appveyor_get_environments() — Tool to get a list of all deployment environments. Use when you need to enumerate available environments before creating deployments. - appveyor_get_project_branch_status_badge(svg?: boolean, retina?: boolean, buildBranch: string, failingText?: string, passingText?: string, pendingText?: string, statusBadgeId: string) — Tool to get a project branch status badge image. Returns a PNG or SVG badge image showing the build status for a specific project branch. - appveyor_get_project_status_badge(svg?: boolean, retina?: boolean, failingText?: string, passingText?: string, pendingText?: string, statusBadgeId: string) — Tool to get project status badge image. Use when you need to retrieve the status badge for displaying project build status. - appveyor_get_projects() — Tool to get a list of all projects for the authenticated account. Use after authentication to enumerate available projects. - appveyor_get_public_project_status_badge(svg?: boolean, branch?: string, retina?: boolean, repoSlug: string, failingText?: string, passingText?: string, pendingText?: string, repoAccountName: string, badgeRepoProvider: string) — Tool to get status badge image for a project with a public repository. Use when you need to retrieve a build status badge for display or documentation purposes. - appveyor_get_role(role_id: integer) — Tool to retrieve details of a specific role. Use when you need to inspect permissions and metadata of a role by ID. - appveyor_get_roles() — Tool to retrieve all roles in the account. Use when you need to enumerate available roles before assigning permissions. - appveyor_get_user_invitations() — Tool to retrieve all pending user invitations in the account. Use when you need to list all outstanding invitations sent to potential team members. - appveyor_get_users() — Tool to retrieve all users in the account. Use when you need to list all team users in your AppVeyor account. - appveyor_list_collaborators() — Tool to retrieve all collaborators in the account. Use when you need to list all team collaborators in your AppVeyor account. ## Example prompts - "What can I do in Appveyor?" - "Show me a summary of my Appveyor account" ## Links Docs: https://mcp.ai/docs/mcps/appveyor Website: https://mcp.ai/mcps/appveyor