pulsar-mcp
Enables AI assistants to control the Pulsar editor, including reading and writing files, managing selections, and interacting with project paths.
README
pulsar-mcp
Model Context Protocol server, that provides Pulsar editor tools to AI assistants.
Features
- MCP protocol: Version 2025-11-25 with tool annotations support.
- HTTP bridge: Server running inside Pulsar for direct API access.
- Standalone server: MCP server script for Claude CLI integration.
- Editor tools: Get/set content, open/save files, manage selections.
- Extensible: Other packages can register tools via
mcp-toolsservice. - Toggle tools: Enable/disable individual tools via select list. Destructive tools disabled by default.
- claude-chat integration: Auto-connects the MCP server to each Claude session via the provided service.
Installation
To install pulsar-mcp search for pulsar-mcp in the Install pane of the Pulsar settings or run ppm install pulsar-mcp. Alternatively, you can run ppm install asiloisad/pulsar-pulsar-mcp to install a package directly from the GitHub repository.
Commands
Commands available in atom-workspace:
pulsar-mcp:toggle-tools: toggle individual tools on/off,pulsar-mcp:start: start the MCP bridge server,pulsar-mcp:stop: stop the MCP bridge server,pulsar-mcp:status: show current bridge status and port.
Commands available in .pulsar-mcp:
select-list:enable-all: enable all tools,select-list:disable-all: disable all tools,select-list:reset-defaults: reset to defaults.
Built-in Tools
| Tool | Description | Default |
|---|---|---|
GetActiveEditor |
Get editor metadata (path, grammar, modified, lineCount) | Enabled |
GetOpenEditors |
Get metadata for all open text editors | Enabled |
ReadText |
Read active editor content with line pagination (use agent's file tools for other files) | Enabled |
WriteText |
Write text at cursor or replace range in active editor (use agent's file tools for other files) | Enabled |
OpenFile |
Open an existing file in editor with optional position (create=true allows new files) |
Enabled |
SaveFile |
Save a file (active editor or specific path) | Enabled |
GetSelections |
Get all selections/cursors with positions and text from active editor | Enabled |
SetSelections |
Set multiple selections/cursors at specific positions in active editor | Enabled |
CloseFile |
Close an editor tab | Disabled |
GetProjectPaths |
Get project root folders | Enabled |
AddProjectPath |
Add a folder to project roots | Enabled |
RemoveProjectPath |
Remove a folder from project roots | Disabled |
MCP Client Integration
The standalone MCP server (lib/server.js) can be used with any MCP-compatible client. The server connects to the Pulsar bridge via PULSAR_BRIDGE_PORT (default 3000). Check the actual port with pulsar-mcp:status. It auto-increments when multiple Pulsar windows are open.
Claude Code
Register the server with the Claude CLI:
claude mcp add -e PULSAR_BRIDGE_PORT=3000 pulsar -- node ~/.pulsar/packages/pulsar-mcp/lib/server.js
On Windows:
claude mcp add -e PULSAR_BRIDGE_PORT=3000 pulsar -- node "%USERPROFILE%\.pulsar\packages\pulsar-mcp\lib\server.js"
JSON config
{
"mcpServers": {
"pulsar": {
"command": "node",
"args": ["~/.pulsar/packages/pulsar-mcp/lib/server.js"],
"env": {
"PULSAR_BRIDGE_PORT": "3000"
}
}
}
}
On Windows, use "%USERPROFILE%\.pulsar\packages\pulsar-mcp\lib\server.js".
Provided Service pulsar-mcp
Provides access to the MCP bridge state: port, running status, and server script path. Used by claude-chat to auto-connect the MCP server.
In your package.json:
{
"consumedServices": {
"pulsar-mcp": {
"versions": {
"1.0.0": "consumePulsarMcp"
}
}
}
}
In your main module:
consumePulsarMcp(service) {
// Get current bridge port
const port = service.getBridgePort();
// Check if bridge is running
const running = service.isRunning();
// Get path to MCP server script
const serverPath = service.getServerPath();
}
Consumed Service mcp-tools
Other Pulsar packages can provide additional MCP tools by implementing the mcp-tools service. Each tool defines a name, description, input schema, and execute function.
In your package.json:
{
"providedServices": {
"mcp-tools": {
"versions": {
"1.0.0": "provideMcpTools"
}
}
}
}
In your main module:
module.exports = {
provideMcpTools() {
return [
{
name: "MyCustomTool",
description: "Description for the AI",
inputSchema: {
type: "object",
properties: {
param: { type: "string", description: "Parameter description" }
},
required: ["param"]
},
annotations: { readOnlyHint: true },
execute({ param }) {
// Tool implementation
return { result: "data" };
}
}
];
}
}
Contributing
Got ideas to make this package better, found a bug, or want to help add new features? Just drop your thoughts on GitHub. Any feedback is welcome!
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。