webmcp-test-board-title

AI Connect — webmcp-test-board-title
AI Connect

AI Connect

webmcp-test-board-title

What is AI Connect?

AI Connect bridges your forum with AI assistants like ChatGPT, Claude, and Gemini. It gives AI agents secure, permission-aware access to search, read, and interact with your community — all through a standardized protocol with OAuth 2.0 authentication.

Connect Your AI

Advanced: OAuth Prompt for CLI Agents

Quick Start Prompt

You have access to webmcp-test-board-title via AI Connect.

Do ALL of the following immediately and automatically — no asking for permission at each step:

1. Fetch the manifest right now:
   GET http://xenforo.tests.gold-t.co.il/api/aiconnect-manifest

2. Start the auth session — call this URL using web_fetch (GET):
   GET http://xenforo.tests.gold-t.co.il/api/aiconnect-oauth/start?client_id=claude&_t=CURRENT_UNIX_TIMESTAMP (replace CURRENT_UNIX_TIMESTAMP with current epoch seconds to avoid caching)
   You will receive: session_id, auth_url, poll_url

3. Show the auth_url to the user and ask them to open it in their browser, log in, and approve.

4. Once the user confirms they approved — immediately call the poll_url using web_fetch (GET).
   If response has status "pending", wait 5 seconds and try again.
   When you receive access_token in the response — you are connected!

5. Verify the connection — call getCurrentUser using web_fetch GET (read-only tools support GET):
   GET http://xenforo.tests.gold-t.co.il/api/aiconnect-tools?token={access_token}&name=xenforo.getCurrentUser&args={}

   READ tools (GET supported): searchThreads, getThread, searchPosts, getPost, getCurrentUser, getSupportedLanguages
   GET http://xenforo.tests.gold-t.co.il/api/aiconnect-tools?token={access_token}&name=xenforo.searchThreads&args={"search":"keyword","limit":10}

   Translation tool (POST only — use Bearer token):
   curl -X POST "http://xenforo.tests.gold-t.co.il/api/aiconnect-tools" -H "Authorization: Bearer {access_token}" -H "Content-Type: application/json" -d "{\"name\":\"translation.translate\",\"arguments\":{\"text\":\"Hello\",\"target_lang\":\"he\"}}"

Documentation: https://plugins.goldnat.ai/xenforo/guide

How It Works

1

Generate Token

Click the button above to generate a secure access token for your AI agent.

2

Paste to Your AI

Paste it into ChatGPT, Claude, Gemini, or any AI assistant that supports tools.

3

Start Exploring

Your AI can now search, read, and interact with forum content on your behalf.

Back
Top