Explore the Model Context Protocol interface that powers automated access to my content, analytics, and tooling. Learn more about the standard in the MCP docs.
This MCP server provides programmatic access to portfolio content and analytics. It can be used with Claude and other AI assistants that support the Model Context Protocol for automated content management and analysis.
Try it with Postman (MCP beta) or Claude Desktop's MCP console to fetch the full list of posts.
POST /mcp
{
"method": "tools/call",
"params": {
"name": "get_all_posts",
"arguments": {}
}
}Use the same tooling setup to issue a search request and filter by content type.
POST /mcp
{
"method": "tools/call",
"params": {
"name": "search_content",
"arguments": {
"query": "React",
"contentType": "posts"
}
}
}Send this request from Postman or Claude Desktop to pull analytics details for a specific slug.
POST /mcp
{
"method": "tools/call",
"params": {
"name": "get_content_analytics",
"arguments": {
"contentType": "posts",
"slug": "specific-post-slug"
}
}
}