How to Use the Ghost MCP in CrewAI
Deploy multi-agent crews to audit your Ghost CMS. CrewAI agents collaborate to read posts, analyze tags, and map authors.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Ghost MCP to CrewAI
Create your Vinkius account to connect Ghost to CrewAI and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Orchestrate Ghost content audits with CrewAI
The Ghost MCP server acts as a read-only data source for your autonomous agent teams. A researcher agent calls `list_published_posts` to gather recent articles, then hands the data to an analyst agent that reads the content using `get_post_by_slug`. These agents share memory and collaborate without human intervention. You set the goals, and the crew determines the exact sequence of reads required to map your publication's entire output.
Analyze authors and taxonomies
Assign a dedicated agent to monitor your site structure. This agent runs `list_content_tags` and `list_blog_authors` to build a complete picture of your editorial team. It then drills into specific profiles using `get_author_details` and `get_tag_details`. Because CrewAI supports hierarchical execution, a manager agent can evaluate the researcher's findings. If the data looks incomplete, the manager instructs the researcher to pull `list_static_pages` to ensure no content is missed.
Track settings and verify uptime
A monitor agent can continuously check your site's health and configuration. It runs `verify_api_connection` to confirm the CMS is online, then pulls `get_site_settings` and `list_subscription_tiers` to verify your monetization rules. You control exactly which tools each agent sees. Using the `tool_filter` parameter, you can restrict the monitor agent to settings tools while giving the researcher agent exclusive access to the blog content.
Set up Ghost MCP in CrewAI
Prerequisites
- Python 3.10+ installed
-
crewaipackage (pip install crewai) - Active Vinkius subscription with a valid endpoint token
- 1
Install CrewAI
Run
pip install crewaito install the framework. MCP support is built-in via themcpsparameter. - 2
Add the MCP URL to your agent
Pass your Vinkius endpoint directly to the
mcpslist. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. CrewAI handles tool discovery and caching automatically. - 3
Kick off your crew
Create a
Crewwith your agent and tasks. Callcrew.kickoff()— the agent will automatically invoke Ghost tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="Ghost Analyst",
goal="Access and analyze Ghost data via MCP.",
backstory="Expert analyst with direct Ghost access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent Ghost transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Prerequisites
- Python 3.10+ installed
-
crewai+crewai-toolspackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install crewai crewai-tools. TheMCPServerAdapterhandles lifecycle management and tool conversion. - 2
Connect with MCPServerAdapter
Use
MCPServerAdapteras a context manager withSseServerParameterspointing to your Vinkius endpoint. The adapter automatically manages connection lifecycle. - 3
Assign tools and run
Pass the returned
mcp_toolsto your agent'stoolsparameter. The adapter converts MCP tools to nativeBaseToolobjects compatible with all CrewAI agents.
from crewai import Agent, Task, Crew
from crewai_tools import MCPServerAdapter
from mcp import SseServerParameters
server_params = SseServerParameters(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
with MCPServerAdapter(server_params) as mcp_tools:
agent = Agent(
role="Ghost Analyst",
goal="Access and analyze Ghost data via MCP.",
backstory="Expert analyst with direct Ghost access.",
tools=mcp_tools,
)
task = Task(
description="List recent Ghost transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Ghost CMS. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Ghost MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Ghost MCP today
We host it, we monitor it, we maintain it. You just paste one token.