cf-connect

Guides setup of MCP connectors with verified endpoints, env vars, and .mcp.json entries.

1|Updated Aug 18, 2026
One-click install
npx skills add https://github.com/teachskillofskills-ai/ContentForge-techshu --skill cf-connect-teachskillofskills-ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cf-connect
Source: https://github.com/teachskillofskills-ai/ContentForge-techshu/tree/main/skills/cf-connect
Command: npx skills add https://github.com/teachskillofskills-ai/ContentForge-techshu --skill cf-connect-teachskillofskills-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Configuring MCP connectors for ContentForge is error-prone: users guess endpoint URLs, miss required environment variables, or assume connectors are pre-wired when the plugin ships with an empty .mcp.json. This skill walks you through setting up a specific connector with transport-specific instructions and post-setup verification. ## Core Features & Use Cases - Transport-aware setup guidance: HTTP connectors get verified endpoint URLs and OAuth flow instructions; npx connectors get required env vars and a ready-to-paste .mcp.json entry. - Status from scripts, never memory: All connection status comes from running scripts/connector-status.py, with fuzzy name matching (e.g., wp → wordpress, gsheets → google-sheets). - Credential and verification support: Explains where to obtain API keys or application passwords, checks which env vars are set vs missing, and confirms configuration after setup. - Use Case: A user wants to publish articles to WordPress. Running the skill for wordpress returns the npm package to verify, the WORDPRESS_SITE_URL and WORDPRESS_AUTH_TOKEN variables to export, the exact .mcp.json block to paste, and a reminder to restart Claude Code. ## Quick Start Ask the assistant to set up the WordPress connector for ContentForge and follow the step-by-step instructions it returns.

Frequently Asked Questions about cf-connect

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up an MCP connector for WordPress in Claude Code?

Run the connector setup for wordpress to get the npm package name, then create an application password in your WordPress admin panel. Export WORDPRESS_SITE_URL and WORDPRESS_AUTH_TOKEN, paste the provided .mcp.json entry, and restart Claude Code.

What is the difference between HTTP and npx MCP connectors?

HTTP connectors need only a verified endpoint URL in .mcp.json and authenticate via OAuth on first use, working in both Cowork and Claude Code. npx connectors require environment variables and a local Node.js runtime, so they work in Claude Code only.

Does ContentForge come with connectors pre-configured?

No. ContentForge ships with an empty .mcp.json by design, so every connector is opt-in. You must add each entry yourself or connect at the platform level in Cowork or Desktop settings.

Why does my npx connector still show as not working after setup?

The most common cause is that Claude Code reads .mcp.json only at startup, so you must restart after editing it. Also verify the npm package exists with npm view, confirm env vars are exported rather than just assigned, and check that npx is in your PATH.

What happens if the connector name I enter is not in the registry?

The skill first tries fuzzy alias matching, such as wp for wordpress or gsheets for google-sheets. If no match exists, it lists available connectors, suggests manual HTTP or npx configuration, and can hand off to the cf-add-integration flow.