MCP
Other tools
Add Posteady as an MCP server in VS Code and other MCP clients.
Most MCP clients read remote servers from a JSON config. Posteady's endpoint is https://www.posteady.com/api/mcp (streamable HTTP, OAuth 2.1). MCP connection requires the Creator plan or above.
VS Code
Add Posteady to .vscode/mcp.json. VS Code uses a top-level servers key and type: "http":
{
"servers": {
"posteady": {
"type": "http",
"url": "https://www.posteady.com/api/mcp"
}
}
}Other MCP clients
Most other clients use an mcpServers map keyed by URL:
{
"mcpServers": {
"posteady": {
"url": "https://www.posteady.com/api/mcp"
}
}
}On first use, the client opens the Posteady OAuth screen to authorize. Exact key names vary between tools — some use httpUrl or require a type field — so check your tool's MCP documentation if a field differs. For Claude Code, see the Connect Claude guide.