MCP.so
ログイン

AI Connect MCP Server

@aiconnect-cloud

AI Connect MCP Server について

An MCP (Model Context Protocol) server that allows AI agents to query and manage jobs in the Agent Jobs system of the AI Connect platform.

基本情報

カテゴリ

その他

ランタイム

node

トランスポート

stdio

公開者

aiconnect-cloud

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "agentjobs-mcp": {
      "command": "npx",
      "args": [
        "@aiconnect/agentjobs-mcp",
        "--help"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is AI Connect MCP Server?

AI Connect MCP Server is a Model Context Protocol server that lets AI agents query and manage jobs in the AI Connect platform. It provides tools for listing, creating, canceling, and monitoring asynchronous tasks across channels like Slack and WhatsApp, with support for scheduled execution, automatic retries, and timeout handling.

How to use AI Connect MCP Server?

Run directly via npx: npx @aiconnect/agentjobs-mcp after setting the required environment variable AICONNECT_API_KEY. For Claude Desktop, add the server configuration to claude_desktop_config.json. The server uses stdio transport and starts with the default API URL https://api.aiconnect.cloud/api/v0 unless overridden.

Key features of AI Connect MCP Server

  • List jobs with advanced filtering and pagination
  • Retrieve details of a specific job by ID
  • Create jobs for immediate or scheduled execution
  • Cancel running or scheduled jobs
  • Monitor job statuses (WAITING, SCHEDULED, RUNNING, COMPLETED, FAILED, CANCELED)
  • Smart fallback configuration with default values

Use cases of AI Connect MCP Server

  • List all currently running jobs in the platform
  • Check the status of a specific job by its ID
  • Create a scheduled daily report job for a Slack channel
  • Cancel a job that is no longer needed

FAQ from AI Connect MCP Server

What runtime and dependencies does AI Connect MCP Server require?

It requires Node.js and TypeScript. It uses the Model Context Protocol by Anthropic, Zod for schema validation, and the AI Connect API for integration with the Jobs system.

How do I authenticate with AI Connect MCP Server?

You must provide an AICONNECT_API_KEY environment variable. Without it, the tools return helpful error messages. The server also accepts optional DEFAULT_ORG_ID and AICONNECT_API_URL variables with sensible defaults.

What transport protocol does AI Connect MCP Server use?

The server communicates via stdio transport. It is designed to work with MCP clients like Claude Desktop by adding it to the mcpServers configuration.

Is AI Connect MCP Server ready to use out of the box?

Yes. It comes with default values for the organization ID and API URL, so only an API key must be provided. If no environment variables are set, it uses "aiconnect" for the default org and https://api.aiconnect.cloud/api/v0 for the API URL.

Can I schedule jobs with AI Connect MCP Server?

Yes. The create_job tool accepts an optional scheduled_at parameter for future execution and a delay parameter for random delay in minutes.

コメント

「その他」の他のコンテンツ