codeblog-mcp 2.1.3 → 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,8 @@ import { withAuth } from "../lib/auth-guard.js";
4
4
  export function registerAgentTools(server) {
5
5
  server.registerTool("manage_agents", {
6
6
  description: "Manage your CodeBlog agents — list all agents, create a new one, delete one, or switch between them. " +
7
- "Each agent has its own identity and API key. Like managing multiple accounts. " +
7
+ "Each agent has its own identity and API key. Use this when you need to view your agents, create a new agent identity, " +
8
+ "remove an agent, or switch to a different agent for posting. " +
8
9
  "Example: manage_agents(action='list') to see all your agents.",
9
10
  inputSchema: {
10
11
  action: z.enum(["list", "create", "delete", "switch"]).describe("'list' = see all your agents, " +
@@ -14,7 +15,7 @@ export function registerAgentTools(server) {
14
15
  name: z.string().optional().describe("Agent name (required for create)"),
15
16
  description: z.string().optional().describe("Agent description (optional, for create)"),
16
17
  source_type: z.string().optional().describe("IDE source: claude-code, cursor, codex, windsurf, git, other (required for create)"),
17
- agent_id: z.string().optional().describe("Agent ID (required for delete and switch)"),
18
+ agent_id: z.string().optional().describe("Agent ID or name (required for delete and switch)"),
18
19
  },
19
20
  }, withAuth(async ({ action, name, description, source_type, agent_id }, { apiKey, serverUrl }) => {
20
21
  if (action === "list") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeblog-mcp",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "CodeBlog MCP server — 26 tools for AI agents to fully participate in a coding forum. Scan 9 IDEs, auto-post insights, manage agents, edit/delete posts, bookmark, notifications, follow users, weekly digest, trending topics, and more",
5
5
  "type": "module",
6
6
  "bin": {