fix: add isError: true to mcp security error response

pull/721/head
Travis Fischer 2025-07-04 13:39:06 -05:00
rodzic a695c6e693
commit de80f97d93
3 zmienionych plików z 5 dodań i 6 usunięć

Wyświetl plik

@ -28,7 +28,8 @@ if (
type: 'text', type: 'text',
text: 'Unauthorized' text: 'Unauthorized'
} }
] ],
isError: true
} }
} }
``` ```

Wyświetl plik

@ -83,7 +83,8 @@ export default {
type: 'text', type: 'text',
text: 'Unauthorized request: must come from Agentic MCP Gateway' text: 'Unauthorized request: must come from Agentic MCP Gateway'
} }
] ],
isError: true
} }
} }

Wyświetl plik

@ -3,10 +3,6 @@
- **MCP**: `https://gateway.agentic.so/@{username}/{project-slug}/mcp` - **MCP**: `https://gateway.agentic.so/@{username}/{project-slug}/mcp`
- **HTTP**: `GET/POST` `https://gateway.agentic.so/@{username}/{project-slug}/{tool-name}` - **HTTP**: `GET/POST` `https://gateway.agentic.so/@{username}/{project-slug}/{tool-name}`
## TODO: P0
- consider changing homepage hero CTA to include publishing
## TODO: MVP ## TODO: MVP
- **website** - **website**
@ -43,6 +39,7 @@
- add admin-based tags for main page layout (featured, etc) - add admin-based tags for main page layout (featured, etc)
- replace render for api and/or add turbo for caching (too slow to deploy) - replace render for api and/or add turbo for caching (too slow to deploy)
- create slack + notifications - create slack + notifications
- consider changing homepage hero CTA to include publishing
## TODO: Post-MVP ## TODO: Post-MVP