softreviewed/neuronwriter-mcp-server
If you are the rightful owner of neuronwriter-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
NEURONwriter MCP Server provides programmatic access to NEURONwriter's SEO content analysis and recommendations, ideal for automating content creation.
NEURONwriter MCP Server - Lifetime Deal Integration
NEURONwriter MCP Server - Access NEURON writer SEO content analysis and recommendations programmatically. Perfect for Neuron writer lifetime deal owners looking to automate content creation.
š NEURONwriter Lifetime Deal Available
NEURON writer lifetime deal is still available if you have not yet purchased. Get the license and API key to start using this powerful MCP server!
š Get Your NEURONwriter Lifetime Deal
⨠Why NEURONwriter MCP Server?
For Neuron writer lifetime deal owners, this MCP server unlocks:
- Automated Content Analysis - Get SEO recommendations instantly
- Competitor Intelligence - Access top 30 competitor data
- Content Scoring - Evaluate content quality programmatically
- Bulk Processing - Handle multiple queries at scale
š„ļø Installation & Configuration
Step 1: Install the Server
First, you need to clone the repository and build the server on your local machine.
# 1. Clone the repository from GitHub
git clone https://github.com/softreviewed/neuronwriter-mcp-server.git
# 2. Navigate into the new directory
cd neuronwriter-mcp-server
# 3. Install all necessary dependencies
npm install
# 4. Build the server from the TypeScript source
npm run build
After this, you will have a build/index.js
file inside the neuronwriter-mcp-server
directory. You will need the full, absolute path to this file for the next step.
Step 2: Get Your NEURONwriter API Key
- Go to NEURONwriter
- Sign up or log in to your account.
- Navigate to Profile ā "NEURON API access" tab.
- Copy your API key.
Step 3: Configure Your MCP Client
For VS Code Extensions (Kilo Code, Cline, Roo Code)
Since Kilo Code, Cline, and Roo Code are all VS Code extensions, you configure them by editing a specific JSON file. The file location varies by extension.
1. Find Your MCP Settings File:
-
For Kilo Code:
C:\Users\[YourUsername]\AppData\Roaming\Code\User\globalStorage\kilocode.kilo-code\settings\mcp_settings.json
-
For Cline:
C:\Users\[YourUsername]\AppData\Roaming\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
-
For Roo Code: Check the extension's settings within VS Code to find the path to its MCP configuration file.
2. Add the Server Configuration:
Open the correct JSON file for your extension and add the neuronwriter
server to the mcpServers
object.
Important: Replace "C:/path/to/your/project/neuronwriter-mcp-server/build/index.js"
with the actual absolute path to the index.js
file you built in Step 1.
{
"mcpServers": {
// ... other servers might be here ...
"neuronwriter": {
"type": "stdio",
"command": "node",
"args": [
"C:/path/to/your/project/neuronwriter-mcp-server/build/index.js"
],
"env": {
"NEURONWRITER_API_KEY": "your-api-key-here"
},
"disabled": false,
"alwaysAllow": [
"list_projects",
"get_query",
"list_queries",
"get_content",
"import_content",
"evaluate_content"
]
}
}
}
3. Restart VS Code:
Completely close and reopen VS Code to ensure the new MCP server is loaded correctly.
For Standalone Clients (Claude Desktop, Cursor)
For standalone clients, find their specific MCP configuration file and add the same JSON block from above, ensuring the args
path is correct.
- Claude Desktop: The configuration is usually at
%APPDATA%\Claude\claude_desktop_config.json
on Windows or~/Library/Application Support/Claude/claude_desktop_config.json
on macOS. - Cursor: Find the MCP settings within the application's main settings/preferences menu.
You will add the same neuronwriter
server block to the mcpServers
object in their respective configuration files.
š¤ Automation Integrations
Make.com Integration
Set up automation using the neuron writer modules for Make.com: š NEURONwriter API for Make.com
Boost.space Integration
For Boost space modules, integrate NEURONwriter seamlessly: š NEURONwriter API for Boost.space
šÆ Available Tools
list_projects
: Get your NEURONwriter projects.new_query
: Create a new content analysis query.get_query
: Retrieve SEO recommendations for a query.list_queries
: Filter and find existing queries.get_content
: Export optimized content from the editor.import_content
: Import your own content for analysis.evaluate_content
: Score content quality without saving.
š” Use Cases & Automation Workflows
This MCP server allows you to integrate NEURONwriter's powerful SEO analysis into any automated workflow. Here are some examples of what you can build:
1. Programmatic Content Brief Generation
Automate the creation of detailed content briefs for your writing team without ever opening the NEURONwriter UI.
- When to use: When you have a list of keywords and need to generate briefs quickly.
- How it works:
- Use
list_projects
to get your project ID. - Loop through your keyword list and call
new_query
for each one. - Poll the
get_query
tool until thestatus
is "ready". - Extract the
terms
,competitors
, andideas
from theget_query
response. - Format this data into a structured content brief (e.g., a Markdown file or a Trello card).
- Use
2. Bulk Content Scoring & Auditing
Quickly evaluate the SEO score of hundreds of existing articles on your website.
- When to use: For a site-wide content audit or to check if old content meets new SEO standards.
- How it works:
- Create a query for each article's target keyword using
new_query
. - Use a web scraper (or another MCP tool like
fetch-mcp
) to get the HTML of each live article. - Call the
evaluate_content
tool with the query ID and the article's HTML. - Log the
content_score
for each article into a spreadsheet to identify which pages need optimization.
- Create a query for each article's target keyword using
3. AI-Powered Content Drafting Workflow
Combine NEURONwriter with a large language model (like the one you're using now) to draft SEO-optimized articles automatically.
- When to use: To scale content production for blogs, affiliate sites, or content marketing.
- How it works:
- Create a query with
new_query
. - Get the SEO recommendations from
get_query
. - Feed the recommended
terms
,h1
/h2
suggestions, andcontent_questions
into a prompt for an AI model. - Instruct the AI to write an article that naturally incorporates these elements.
- (Optional) Use
evaluate_content
to check the AI's draft and have it revise until the score is high enough. - Finally, use
import_content
to save the final draft in the NEURONwriter editor.
- Create a query with
4. Integrating with Headless CMS
Update your CMS with SEO recommendations directly.
- When to use: If you use a headless CMS (like Contentful, Sanity, or Strapi) and want to provide writers with SEO guidance directly within their editing environment.
- How it works:
- When a new draft is created in your CMS, trigger a webhook.
- The webhook runs a script that calls
new_query
andget_query
. - The script then pushes the recommended terms and competitor data back to custom fields in your CMS via its API.
These are just a few examples. With these tools, you can build custom scripts and integrations to fit your exact SEO and content workflow needs.
š License
MIT License - Free to use, modify, and distribute.
š¤ Contributing
Contributions are welcome! Please fork the repository and submit a pull request.
š Support
- NEURONwriter Official: neuronwriter.com
- SoftReviewed Official Support: Contact for Support
Ready to supercharge your content creation? Get the NEURONwriter lifetime deal today and start automating with this MCP server! š