@agos-labs/noimosai-mcp
v0.0.5
Published
NoimosAI MCP Server - Connect AI agents to MCP-compatible clients
Readme
@agos-labs/noimosai-mcp
MCP Server for NoimosAI - AI-powered social media marketing platform.
Tools
chat
Send a message to the NoimosAI agent. Supports marketing analysis, social media post creation, SEO analysis, content generation, and more.
| Parameter | Type | Required | Description |
| ------------- | ------------------ | -------- | ---------------------------------------------------------------------------------------------- |
| prompt | string | Yes | The message or instruction to send to the agent |
| workspaceId | string | No | Workspace ID (falls back to NOIMOS_WORKSPACE_ID env var) |
| sessionId | string | No | Session ID to continue an existing conversation (creates a new session if omitted) |
| output | "text" \| "json" | No | Output format. "text" returns Markdown (default). "json" returns structured NoimosPostJson |
list_workspaces
List available workspaces. Returns workspace IDs and names. No parameters.
list_integrations
List connected integrations (social media accounts) for the workspace. Returns account IDs that can be used to specify an account in the post tool.
post
Publish social media posts. Accepts post data in NoimosPostJson format as returned by the chat tool with output="json".
| Parameter | Type | Required | Description |
| ------------- | --------- | -------- | ---------------------------------------------------------------------------- |
| posts | array | Yes | Array of posts in NoimosPostJson format |
| schedule | string | Yes | Publish timing. "now" for immediate, or "YYYY-MM-DD HH:MM" for scheduled |
| workspaceId | string | No | Workspace ID (falls back to NOIMOS_WORKSPACE_ID env var) |
| dryRun | boolean | No | If true, shows what would be sent without actually publishing |
Configuration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"noimosai": {
"command": "pnpm",
"args": ["dlx", "@agos-labs/noimosai-mcp"],
"env": {
"NOIMOS_API_KEY": "your-api-key",
"NOIMOS_WORKSPACE_ID": "your-workspace-id"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"noimosai": {
"command": "pnpm",
"args": ["dlx", "@agos-labs/noimosai-mcp"],
"env": {
"NOIMOS_API_KEY": "your-api-key",
"NOIMOS_WORKSPACE_ID": "your-workspace-id"
}
}
}
}VS Code
Add to .vscode/mcp.json:
{
"servers": {
"noimosai": {
"command": "pnpm",
"args": ["dlx", "@agos-labs/noimosai-mcp"],
"env": {
"NOIMOS_API_KEY": "your-api-key",
"NOIMOS_WORKSPACE_ID": "your-workspace-id"
}
}
}
}Environment Variables
| Variable | Required | Description |
| --------------------- | -------- | ------------------------------------------------------------------- |
| NOIMOS_API_KEY | Yes | NoimosAI API key (available from the API tab in your team settings) |
| NOIMOS_WORKSPACE_ID | No | Default workspace ID |
