ars-nova-wordpress-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ars-nova-wordpress-mcpList the 10 most recent posts with their SEO meta"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ars-nova-wordpress-mcp
Local MCP server for managing arsnovasingers.org via the WordPress REST API.
Built for Jonathan Raabe (Marketing Director, Ars Nova Singers) so Claude can read, audit, and (in later phases) update the WordPress site directly.
Phases
Phase | Scope | Status |
1 | Read-only audit (posts, pages, media, users, plugins, themes, settings, SEO meta) | In progress |
2 | Content writes (create/update posts + pages, upload media) | Planned |
2.5 | WPEngine API integration (cache flush, perf metrics, backups) | Deferred until needed |
3 | Custom Ars Nova endpoints (events, season pages, ACF fields if discovered) | Planned |
4 | Eval suite (10 read-only complex questions) | Planned |
Related MCP server: ItchWPMCP
Setup
1. Generate a WordPress Application Password
Log into wp-admin at https://arsnovasingers.org/wp-admin
Go to Users → Profile
Scroll to Application Passwords
Name it
claude-mcpand click Add New Application PasswordCopy the 24-character password — WordPress only shows it once
2. Install + build
cd ars-nova-wordpress-mcp
npm install
npm run buildThis produces dist/index.js which is the entry point Claude Desktop runs.
3. Add to claude_desktop_config.json
{
"mcpServers": {
"ars-nova-wordpress": {
"command": "node",
"args": [
"C:\\Users\\jonra\\Claud Projects\\Ars Nova\\Ars Nova\\ars-nova-wordpress-mcp\\dist\\index.js"
],
"env": {
"WP_SITE_URL": "https://arsnovasingers.org",
"WP_USERNAME": "your_wp_username",
"WP_APP_PASSWORD": "your_24_char_password"
}
}
}
}Restart Claude Desktop after editing.
4. Smoke test
In a Claude Desktop conversation, ask:
Use the ars-nova-wordpress MCP to call
wp_get_site_info.
If it returns the site name, tagline, and WP version, auth is working.
Tool list (Phase 1)
Content
wp_list_posts— list posts with filterswp_get_post— fetch one post by ID or slugwp_list_pages— list pages with filterswp_get_page— fetch one page by ID or slugwp_search_content— search across posts and pages
Media
wp_list_media— list media library itemswp_get_media_item— fetch one media item with full metadata
Users
wp_list_users— list users and their roleswp_get_user— fetch one user by ID
Taxonomy
wp_list_categories— list categorieswp_list_tags— list tags
Site
wp_get_site_info— site name, tagline, WP version, REST namespaceswp_list_themes— installed themes (active flagged)wp_list_plugins— installed plugins (active flagged, version reported)wp_get_settings— general WP settingswp_list_post_types— registered post types (reveals custom post types)
SEO
wp_get_seo_meta— auto-detects Yoast / RankMath / AIOSEO and returns the per-page SEO metawp_audit_alt_text— scans the media library for items missing alt text
Tool conventions
Every tool:
Uses snake_case naming with
wp_prefixValidates inputs with Zod (
.strict())Supports
response_format: "markdown" | "json"(default markdown)Implements pagination with
limit,offset,has_more,next_offsetReturns both
content[](text) andstructuredContent(typed object)Declares MCP annotations:
readOnlyHint,destructiveHint,idempotentHint,openWorldHintTruncates responses larger than
CHARACTER_LIMIT(25,000) with a clear messageSurfaces 401/403/429 errors with actionable next-step guidance
Auth model
WordPress Application Passwords (built into WP 5.6+, no plugin required). Sent as Basic Auth on every request. Application Passwords can be revoked individually from the WP profile page without affecting the user's normal login.
Project structure
ars-nova-wordpress-mcp/
├── package.json
├── tsconfig.json
├── README.md
├── src/
│ ├── index.ts # Entry point — registers all tools, starts stdio transport
│ ├── constants.ts # CHARACTER_LIMIT, default limits, API namespace
│ ├── types.ts # Shared TypeScript interfaces
│ ├── services/
│ │ └── wp-client.ts # Axios client with auth + shared error handling
│ ├── schemas/
│ │ └── common.ts # Shared Zod schemas (pagination, response_format)
│ └── tools/
│ ├── content.ts # Posts, pages, search
│ ├── media.ts # Media library
│ ├── users.ts # Users, roles
│ ├── taxonomy.ts # Categories, tags
│ ├── site.ts # Site info, themes, plugins, settings, post types
│ └── seo.ts # SEO meta + alt text audit
└── dist/ # Build output — entry point: dist/index.jsMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
Flicense-qualityAmaintenanceProduction MCP server that runs as a WordPress plugin, exposing 40+ tools for managing posts, pages, custom post types, WooCommerce products, media, users, and menus from any MCP client. Includes API key + OAuth 2.0 authentication, rate limiting (60 req/min per IP), and activity logging. Free on WordPress.org8- FlicenseBqualityCmaintenanceLocal MCP server for Codex/Claude to query and edit WordPress content through the WordPress REST API.26
- Alicense-qualityBmaintenanceA local server that enables Claude or other MCP tools to manage WordPress posts and media via REST API.22MIT
- Alicense-qualityDmaintenanceA lightweight MCP server that connects to WordPress via REST API, enabling content management (posts, pages, categories, etc.) and site configuration through natural language commands.Apache 2.0
Related MCP Connectors
WordPress MCP server: publish posts, AI images, SEO and full site management, self-hosted
Federated commerce search across independent WooCommerce merchants. Keyless, read-only MCP server.
WordPress MCP server: generate SEO posts, AI images, autoblog & WooCommerce on your self-hosted site
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ArsNovaSingers/ars-nova-wordpress-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server