by chagold
0 (0 reviews)
GoldT WebMCP Bridge
Bridge for 8 AI agents (Claude, ChatGPT, Grok, more) via WebMCP with OAuth 2.0
Compatible with WP 7.0.1
v1.0.0
Current Version v1.0.0
Updated 2 weeks ago
Last Update on 29 Jun, 2026
Refreshed 1 day ago
Last Refreshed on
Rank
#63,047
—
No change
Active Installs
0+
—
No change
KW Avg Position
5
—
No change
Downloads
77
+2 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 10
0+
10+
34,069
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 10 more installs to reach 10+
Rank Changes
Current
#63,047
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| webmcp | 5 | — | Tag | 1 day ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.0
- Last Updated
- Jun 29, 2026
- Requires WP
- 6.0+
- Tested Up To
- 7.0.1
- PHP Version
- 7.4 or higher
- Author
- chagold
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Adminify – White Label, Admin Menu Editor, Login Customizer
7K+ installs
#2,739
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#989
WPForms – AI Form Builder for WordPress – Contact Forms, Payment Forms, Survey Form, Quiz & More
5M+ installs
#9
Wordfence Security - Firewall, Malware Scan, and Login Security
5M+ installs
#11
WPS Hide Login
2M+ installs
#27
Frequently Asked Questions
Common questions about GoldT WebMCP Bridge
WebMCP (Web Model Context Protocol) is a standardized protocol for connecting AI agents to web services. It defines how AI assistants discover, authenticate with, and execute tools on web platforms.
Yes! GoldT WebMCP Bridge works with any AI platform that supports REST APIs. This includes ChatGPT (OpenAI), Claude (Anthropic), Make.com, Zapier, and custom applications.
All API calls require authentication for security: * Rate Limiting - Prevents spam and abuse * Monitoring - Track who uses your API * Security - Protects against data scraping and DDoS attacks This is the industry standard (Twitter, GitHub, Google APIs all require auth). Exception: The manifest endpoint is public (no auth needed).
OAuth 2.0 Authorization: The AI agent operates as the WordPress user who authorized it.
* The agent receives an access token linked to that user's ID * All API requests run with that user's permissions * The agent inherits the user's capabilities Security: * No passwords are transmitted - only authorization codes * PKCE prevents authorization code interception * Tokens are time-limited (1 hour) and can be revoked * The agent respects WordPress user capabilities
No, Redis is optional. The plugin works perfectly with WordPress transients. However, Redis is recommended for high-traffic sites (>1,000 requests/day) as it provides better rate limiting performance.
Yes! GoldT WebMCP Bridge is extensible. Use WordPress hooks to add custom tools: `php add_action('goldtwmcp_register_modules', function($goldtwmcp_plugin) { $manifest = $goldtwmcp_plugin->get_manifest_instance(); $manifest->register_tool('mysite.getStats', [...]); }); ` Important: Place your custom tools in your theme's functions.php or a separate plugin - they will be preserved during plugin updates. See the plugin documentation for more details.
Access Token: 1 hour (3600 seconds) Refresh Token: 30 days (2,592,000 seconds) Use the refresh token to get a new access token without re-authentication.
Yes! Multiple options: Revoke specific OAuth token: * Go to GoldT WebMCP → OAuth Tokens * Find the token and click "Revoke" Block specific user: * Go to GoldT WebMCP → Settings * Enter user ID in "Block User" section * User cannot authenticate or use existing tokens
Common issues: "invalid_client" - Check client_id (use: claude-ai, chatgpt, or gemini) "invalid_grant" - Authorization code expired or already used (codes are one-time, 10 min expiry) "access_denied" - User is blocked (check GoldT WebMCP → Settings → Manage User Access) "Token expired" - Access token expired after 1 hour, use refresh token to get new access token "Rate limit exceeded" - Wait for retry period or increase limits in Settings Enable WordPress debug mode and check wp-content/debug.log for details.