← Все статьи

NeuralSpace MCP Server: Connect AI Models to Your Agent in One Command

NeuralSpace MCP server: AI models connected to your agent

Коротко о главном (BLUF)

В этом материале мы разбираем ключевые аспекты работы с нейросетями: актуальные модели, практические советы по промптам и примеры генераций. Читайте дальше, чтобы узнать подробности.

We've launched the NeuralSpace MCP server. Everything the platform can do — images, video and music generation, chat with top LLMs, speech synthesis and transcription — is now available to your AI agent directly: Claude Code, Claude Desktop, Cursor and any other app that speaks MCP. The agent picks the model, generates the content and checks the balance itself, on behalf of your account.

What MCP is and why you'd want it

Model Context Protocol (MCP) is an open standard for connecting external tools to AI agents. Integrating with our API used to mean writing code. Now it's one command: the agent sees ten ready-made tools and calls them whenever the task needs them.

Where this pays off:

  • you're building a landing page in Cursor — the agent generates the hero image and background music itself;
  • you ask Claude Desktop to prepare a post — it draws the illustration, voices the text and hands back the files;
  • automation: a script-agent makes a video from a fresh trending prompt once a day.
NeuralSpace MCP server connects AI models to your agent

Connect it in a minute

You'll need a NeuralSpace API key — create one in your account at neuralspace.pro/api-keys (looks like nsk-..., shown once).

Claude Code — a single command in the terminal:

claude mcp add --transport http neuralspace https://neuralspace.pro/mcp \
  --header "Authorization: Bearer nsk-your_key"

Cursor, Claude Desktop and other clients with streamable HTTP — a block in the MCP config:

{
  "mcpServers": {
    "neuralspace": {
      "type": "http",
      "url": "https://neuralspace.pro/mcp",
      "headers": { "Authorization": "Bearer nsk-your_key" }
    }
  }
}

Clients that only speak stdio connect through the mcp-remote bridge:

{
  "mcpServers": {
    "neuralspace": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://neuralspace.pro/mcp",
               "--header", "Authorization: Bearer nsk-your_key"]
    }
  }
}

The tools your agent gets

  • list_models — every model with live prices in tokens, so the agent knows what's available and what it costs;
  • get_balance — account balance, handy before planning an expensive generation;
  • chat — a call to any LLM on the platform: Claude (Fable 5 and Opus 4.8 included), GPT-5.5, Kimi, GLM;
  • generate_image — images: Nano Banana (including Pro and 2), FLUX 2 Pro, GPT Image 1.5/2, Midjourney v7 — with reference images, resolutions up to 4K and a choice of aspect ratios;
  • generate_video + check_video — video: Veo 3.1, Sora 2 (and Pro), Kling 3.0 (and Turbo), Grok Imagine, Wan 2.6, Seedance 2.0; the agent creates the job and polls the status itself;
  • generate_music + check_music — music with Suno up to V5.5, from a description or your own lyrics;
  • text_to_speech — narration in six voices;
  • transcribe_audio — transcription of audio by URL (Whisper).

Tokens, security and cards in your account

The MCP server runs on top of our public API, so pricing, charges and automatic refunds on errors are exactly the same as with direct API calls — no subscriptions. You can revoke the key in your account at any moment and the agent's access dies instantly.

A nice detail: every successful generation your agent makes shows up as a card in your account — under Images, Video and Music, just like a generation you made by hand. Nothing gets lost: the prompt and the result are always there.

For developers

The technical bits: Streamable HTTP transport (MCP protocol 2025-06-18), no sessions, endpoint https://neuralspace.pro/mcp, auth with your key in the Authorization: Bearer or x-api-key header. Two new REST endpoints came along with it: GET /v1/balance and GET /v1/models (a machine-readable model list with prices). Full docs are at neuralspace.pro/v1/docs.

Create a key at neuralspace.pro/api-keys — and your AI agent gets every NeuralSpace model with a single command.

Часто задаваемые вопросы (FAQ)

Вопрос: Как получить лучший результат от нейросети?
Ответ: Используйте подробные промпты (описания) на английском языке, задавайте стиль и детали сцены.

Вопрос: Можно ли использовать эти материалы в коммерческих целях?
Ответ: Да, сгенерированный контент полностью принадлежит вам.