-
Notifications
You must be signed in to change notification settings - Fork 344
feat(mcp): built-in MCP server so AI agents can create Emdash tasks #1642
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ubuntudroid
wants to merge
12
commits into
generalaction:main
Choose a base branch
from
ubuntudroid:sven/feat-basic-emdash-mcp-9j1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a3b4a14
feat(mcp): add built-in MCP HTTP server to main process
ubuntudroid 8226be4
feat(mcp): wire MCP task queue through IPC to renderer
ubuntudroid 8eaa5fd
feat(mcp): add mcp.enabled/port settings with conditional server startup
ubuntudroid 4a3a8cb
feat(mcp): add MCP server settings card to Integrations tab
ubuntudroid a0b0070
feat(mcp): add Emdash to the MCP server catalog
ubuntudroid b642aaa
feat(mcp): add standalone mcp/ stdio bridge package
ubuntudroid 55a5856
docs(mcp): document the built-in Emdash MCP server endpoint
ubuntudroid ac8a0c5
test(mcp): add tests for McpTaskServer, settings normalization, setti…
ubuntudroid bb60827
fix(mcp): update lockfile to match mcp/package.json sdk version
ubuntudroid 92cc155
fix(test): avoid TS2556 spread-into-mock in settingsIpc test
ubuntudroid a998f7d
fix(mcp): address CodeRabbit review comments
ubuntudroid 6958244
fix(mcp): handle mcpGetServerInfo() rejection in McpSettingsCard
ubuntudroid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| { | ||
| "name": "@emdash/mcp", | ||
| "version": "0.1.0", | ||
| "description": "Standalone MCP server for Emdash (alternative to the built-in HTTP endpoint)", | ||
| "type": "module", | ||
| "bin": { | ||
| "emdash-mcp": "./src/index.ts" | ||
| }, | ||
| "scripts": { | ||
| "start": "tsx src/index.ts", | ||
| "type-check": "tsc --noEmit" | ||
| }, | ||
| "dependencies": { | ||
| "@modelcontextprotocol/sdk": "^1.29.0", | ||
| "tsx": "^4.19.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^22.0.0", | ||
| "typescript": "^5.3.3" | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.